We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2b0610 commit b2dcd92Copy full SHA for b2dcd92
1 file changed
classes/transports/transport_base.py
@@ -72,7 +72,7 @@ def __init__(self, settings : 'SectionProxy', protocolSettings : 'protocol_setti
72
73
74
def update_identifier(self):
75
- self.device_identifier = (self.device_serial_number).trim().lower()
+ self.device_identifier = self.device_serial_number.strip().lower()
76
77
def init_bridge(self, from_transport : 'transport_base'):
78
pass
0 commit comments