Skip to content

Commit 13cd2da

Browse files
committed
final.
1 parent 1d9cc98 commit 13cd2da

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
- name: Type check with zuban
7878
if: matrix.run_lint == true
7979
run: |
80-
uv run zuban check pymodbus examples
80+
uv run zuban check pymodbus examples test
8181
8282
- name: ruff
8383
if: matrix.run_lint == true

check_ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ trap 'echo "\"${last_command}\" command filed with exit code $?."' EXIT
88
codespell
99
ruff check --fix --exit-non-zero-on-fix .
1010
pylint --recursive=y examples pymodbus test
11-
zuban check pymodbus examples
11+
zuban check pymodbus examples test
1212
pytest -x --cov --numprocesses auto
1313
echo "Ready to push"

pymodbus/client/mixin.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ def __init__(self):
5050

5151
def execute(self, no_response_expected: bool, request: ModbusPDU) -> T:
5252
"""Execute request."""
53+
_ = no_response_expected, request
5354
return cast(T, None)
5455

5556
def read_coils(self, address: int, *, count: int = 1, device_id: int = 1, no_response_expected: bool = False) -> T:

0 commit comments

Comments
 (0)