Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
include:
- python: '3.10'
run_lint: true
- python: '3.13'
- python: '3.14'
run_doc: true
run_lint: true
- os: macos-latest
Expand Down
32 changes: 16 additions & 16 deletions pymodbus/pdu/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,13 +223,13 @@ def __str__(self):
# Properties
# -------------------------------------------------------------------------#
# fmt: off
VendorName = dict_property(lambda s: s.__data, 0) # pylint: disable=protected-access
ProductCode = dict_property(lambda s: s.__data, 1) # pylint: disable=protected-access
MajorMinorRevision = dict_property(lambda s: s.__data, 2) # pylint: disable=protected-access
VendorUrl = dict_property(lambda s: s.__data, 3) # pylint: disable=protected-access
ProductName = dict_property(lambda s: s.__data, 4) # pylint: disable=protected-access
ModelName = dict_property(lambda s: s.__data, 5) # pylint: disable=protected-access
UserApplicationName = dict_property(lambda s: s.__data, 6) # pylint: disable=protected-access
VendorName = dict_property(lambda s: s.__data, 0)
ProductCode = dict_property(lambda s: s.__data, 1)
MajorMinorRevision = dict_property(lambda s: s.__data, 2)
VendorUrl = dict_property(lambda s: s.__data, 3)
ProductName = dict_property(lambda s: s.__data, 4)
ModelName = dict_property(lambda s: s.__data, 5)
UserApplicationName = dict_property(lambda s: s.__data, 6)
# fmt: on


Expand Down Expand Up @@ -415,15 +415,15 @@ def summary(self):
# Properties
# -------------------------------------------------------------------------#
# fmt: off
BusMessage = dict_property(lambda s: s.__data, 0) # pylint: disable=protected-access
BusCommunicationError = dict_property(lambda s: s.__data, 1) # pylint: disable=protected-access
BusExceptionError = dict_property(lambda s: s.__data, 2) # pylint: disable=protected-access
DeviceMessage = dict_property(lambda s: s.__data, 3) # pylint: disable=protected-access
DeviceNoResponse = dict_property(lambda s: s.__data, 4) # pylint: disable=protected-access
DeviceNAK = dict_property(lambda s: s.__data, 5) # pylint: disable=protected-access
DEVICE_BUSY = dict_property(lambda s: s.__data, 6) # pylint: disable=protected-access
BusCharacterOverrun = dict_property(lambda s: s.__data, 7) # pylint: disable=protected-access
Event = dict_property(lambda s: s.__data, 8) # pylint: disable=protected-access
BusMessage = dict_property(lambda s: s.__data, 0)
BusCommunicationError = dict_property(lambda s: s.__data, 1)
BusExceptionError = dict_property(lambda s: s.__data, 2)
DeviceMessage = dict_property(lambda s: s.__data, 3)
DeviceNoResponse = dict_property(lambda s: s.__data, 4)
DeviceNAK = dict_property(lambda s: s.__data, 5)
DEVICE_BUSY = dict_property(lambda s: s.__data, 6)
BusCharacterOverrun = dict_property(lambda s: s.__data, 7)
Event = dict_property(lambda s: s.__data, 8)
# fmt: on


Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ development = [
"codespell>=2.3.0",
"coverage>=7.10.7",
"mypy>=1.18.2",
"pylint>=3.3.0",
"pylint>=4.0.0",
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
"pytest-cov>=7.0.0",
Expand Down Expand Up @@ -125,7 +125,7 @@ load-plugins = [
"pylint.extensions.typing"
]
jobs = "0"
py-version = "3.9"
py-version = "3.10"

[tool.pylint.messages_control]
enable = "all"
Expand Down
Loading