We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11bce70 commit 0e96b34Copy full SHA for 0e96b34
1 file changed
classes/transports/modbus_tcp.py
@@ -2,10 +2,11 @@
2
from classes.protocol_settings import Registry_Type, protocol_settings
3
from pymodbus.client.sync import ModbusTcpClient
4
from .transport_base import transport_base
5
+from .modbus_base import modbus_base
6
from configparser import SectionProxy
7
8
-class modbus_tcp(transport_base):
9
+class modbus_tcp(modbus_base):
10
port : str = 502
11
host : str = ""
12
client : ModbusTcpClient
0 commit comments