Dane Sabo 3299181c70 Auto sync: 2025-09-02 22:47:53 (10335 files changed)
M  lazy-lock.json

M  lua/custom/configs/lspconfig.lua

M  lua/custom/init.lua

A  lua/custom/journal.lua

A  nvim_venv/bin/Activate.ps1

A  nvim_venv/bin/activate

A  nvim_venv/bin/activate.csh

A  nvim_venv/bin/activate.fish
2025-09-02 22:47:53 -04:00

23 lines
512 B
Python

"""Pymodbus: Modbus Protocol Implementation.
Released under the BSD license
"""
__all__ = [
"ExceptionResponse",
"FramerType",
"ModbusException",
"__version__",
"__version_full__",
"pymodbus_apply_logging_config",
]
from pymodbus.exceptions import ModbusException
from pymodbus.framer import FramerType
from pymodbus.logging import pymodbus_apply_logging_config
from pymodbus.pdu import ExceptionResponse
__version__ = "3.8.6"
__version_full__ = f"[pymodbus, version {__version__}]"