File tree Expand file tree Collapse file tree 1 file changed +15
-9
lines changed
Expand file tree Collapse file tree 1 file changed +15
-9
lines changed Original file line number Diff line number Diff line change @@ -732,25 +732,31 @@ async def _send_bind_response(
732732 resp_pdu = BindTransmitterResp ( # type: ignore[call-arg]
733733 sequence_number = bind_pdu .sequence_number ,
734734 command_status = status ,
735- system_id = self .system_id # type: ignore[call-arg]
736- if status == CommandStatus .ESME_ROK
737- else '' ,
735+ system_id = (
736+ self .system_id # type: ignore[call-arg]
737+ if status == CommandStatus .ESME_ROK
738+ else ''
739+ ),
738740 )
739741 elif isinstance (bind_pdu , BindReceiver ):
740742 resp_pdu = BindReceiverResp ( # type: ignore[call-arg]
741743 sequence_number = bind_pdu .sequence_number ,
742744 command_status = status ,
743- system_id = self .system_id # type: ignore[call-arg]
744- if status == CommandStatus .ESME_ROK
745- else '' ,
745+ system_id = (
746+ self .system_id # type: ignore[call-arg]
747+ if status == CommandStatus .ESME_ROK
748+ else ''
749+ ),
746750 )
747751 elif isinstance (bind_pdu , BindTransceiver ):
748752 resp_pdu = BindTransceiverResp ( # type: ignore[call-arg]
749753 sequence_number = bind_pdu .sequence_number ,
750754 command_status = status ,
751- system_id = self .system_id # type: ignore[call-arg]
752- if status == CommandStatus .ESME_ROK
753- else '' ,
755+ system_id = (
756+ self .system_id # type: ignore[call-arg]
757+ if status == CommandStatus .ESME_ROK
758+ else ''
759+ ),
754760 )
755761 else :
756762 return
You can’t perform that action at this time.
0 commit comments