Skip to content

Commit ce9b914

Browse files
committed
Removed name parameter from Connection
1 parent 5061c76 commit ce9b914

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

src/geocompy/communication.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff 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

tests/helpers_gsionline.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)