Skip to content

Commit b2b5d15

Browse files
committed
fix
1 parent 5f705de commit b2b5d15

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

classes/transports/canbus.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class canbus(transport_base):
5656

5757

5858
def __init__(self, settings : "SectionProxy", protocolSettings : "protocol_settings" = None):
59-
super().__init__(settings, protocolSettings=protocolSettings)
59+
super().__init__(settings)
6060

6161
#check if running on windows or linux
6262
self.linux = platform.system() != "Windows"

classes/transports/serial_pylon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class serial_pylon(transport_base):
5858
EOI : bytes = b"\x0d" # aka b"\r"
5959

6060
def __init__(self, settings : "SectionProxy", protocolSettings : "protocol_settings" = None):
61-
super().__init__(settings, protocolSettings=protocolSettings)
61+
super().__init__(settings)
6262
'''address is required to be specified '''
6363
self.port = settings.get("port", "")
6464
if not self.port:

0 commit comments

Comments
 (0)