We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32b7418 commit c7d83b1Copy full SHA for c7d83b1
remote/pymodbus_fixes.py
@@ -53,6 +53,7 @@
53
54
from contextlib import suppress
55
from dataclasses import dataclass
56
+from typing import Union, Type
57
58
try:
59
from SocketServer import _eintr_retry
@@ -93,7 +94,7 @@ class modbus_communication_monitor( object ):
93
94
def __init__(
95
self,
96
*args,
- framer: FramerType | type[FramerBase],
97
+ framer,
98
**kwds ):
99
"""Allow custom framer classes by instantiating with a FramerType Enum value, and
100
substituting the supplied Framer class after instantiation. The framer may be an int or str
version.py
@@ -1,2 +1,2 @@
1
-__version_info__ = ( 5, 2, 0 )
+__version_info__ = ( 5, 2, 1 )
2
__version__ = '.'.join( map( str, __version_info__ ))
0 commit comments