Skip to content

Commit 35422e9

Browse files
committed
move project to separate module
1 parent a75dc4c commit 35422e9

File tree

14 files changed

+12
-12
lines changed

14 files changed

+12
-12
lines changed

pymodbus/repl/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.
File renamed without changes.

pymodbus_repl/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""REPL (Read-Eval-Print Loop) tool for working with Modbus devices using the Pymodbus library."""
File renamed without changes.
File renamed without changes.

pymodbus/repl/client/completer.py renamed to pymodbus_repl/client/completer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from prompt_toolkit.filters import Condition
77
from prompt_toolkit.styles import Style
88

9-
from pymodbus.repl.client.helper import get_commands
9+
from pymodbus_repl.client.helper import get_commands
1010

1111

1212
@Condition
File renamed without changes.

pymodbus/repl/client/main.py renamed to pymodbus_repl/client/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414

1515
from pymodbus import __version__ as pymodbus_version
1616
from pymodbus.exceptions import ParameterException
17-
from pymodbus.repl.client.completer import (
17+
from pymodbus_repl.client.completer import (
1818
CmdCompleter,
1919
has_selected_completion,
2020
)
21-
from pymodbus.repl.client.helper import CLIENT_ATTRIBUTES, Result
22-
from pymodbus.repl.client.mclient import ModbusSerialClient, ModbusTcpClient
21+
from pymodbus_repl.client.helper import CLIENT_ATTRIBUTES, Result
22+
from pymodbus_repl.client.mclient import ModbusSerialClient, ModbusTcpClient
2323
from pymodbus.transaction import (
2424
ModbusAsciiFramer,
2525
ModbusBinaryFramer,
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)