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 0808283 commit 68cce03Copy full SHA for 68cce03
pymodbus_repl/server/cli.py
@@ -17,6 +17,9 @@
17
from pymodbus_repl import __VERSION__ as repl_version
18
from pymodbus_repl.lib.completer import CmdCompleter
19
from pymodbus_repl.lib.helper import Command, style
20
+from pymodbus_repl.lib.reactive import (
21
+ ReactiveServer,
22
+)
23
24
25
TITLE = r"""
@@ -167,7 +170,7 @@ def _print_help():
167
170
_print_help()
168
171
169
172
-def print_server_config(server: "ReactiveServer", print_server_context: bool = False, *extra) -> dict: # noqa
173
+def print_server_config(server: ReactiveServer, print_server_context: bool = False, *extra) -> dict:
174
"""Print server config."""
175
print_formatted_text()
176
print_formatted_text(HTML("<u>Server Configs:</u>"))
0 commit comments