File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff 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"
Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments