We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8856be4 commit 6e48a75Copy full SHA for 6e48a75
pymodbus/transport/transport.py
@@ -88,7 +88,6 @@ class CommParams:
88
host: str = "localhost" # On some machines this will now be ::1
89
port: int = 0
90
source_address: tuple[str, int] | None = None
91
- handle_local_echo: bool = False
92
93
# tls
94
sslctx: ssl.SSLContext | None = None
@@ -98,7 +97,8 @@ class CommParams:
98
97
bytesize: int = -1
99
parity: str = ''
100
stopbits: int = -1
101
- allow_multiple_devices: bool = False
+ handle_local_echo: bool = False
+ allow_multiple_devices: bool = False # Only for server!
102
103
@classmethod
104
def generate_ssl(
0 commit comments