File tree Expand file tree Collapse file tree 2 files changed +0
-12
lines changed
Expand file tree Collapse file tree 2 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -27,16 +27,6 @@ class Connection:
2727
2828 """
2929
30- def __init__ (self , name : str = "" ):
31- """
32- Parameters
33- ----------
34- name : str, optional
35- Descriptive name, by default ""
36-
37- """
38- self .name : str = name
39-
4030 def is_open (self ) -> bool :
4131 """
4232 Checks if the communication channel is currently open.
@@ -194,7 +184,6 @@ def __init__(
194184 be opened.
195185
196186 """
197- super ().__init__ ("" )
198187
199188 self ._port : Serial = port
200189 self .eom : str = eom # end of message
Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ class DummyGsiOnlineConnection(Connection):
2626 )
2727
2828 def __init__ (self , gsi16 = False ):
29- super ().__init__ ("" )
3029 self ._gsi16 = gsi16
3130
3231 def exchange1 (self , cmd : str ) -> str :
You can’t perform that action at this time.
0 commit comments