Skip to content

Commit 289213d

Browse files
Bump ruff from 0.6.2 to 0.6.4 (#1565)
* Bump ruff from 0.6.2 to 0.6.4 Bumps [ruff](https://github.com/astral-sh/ruff) from 0.6.2 to 0.6.4. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](astral-sh/ruff@0.6.2...0.6.4) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * lint --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: farmio <[email protected]>
1 parent 8f21ce3 commit 289213d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

requirements/testing.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pytest==8.3.2
77
pytest-asyncio==0.24.0
88
pytest-cov==5.0.0
99
pytest-icdiff==0.9
10-
ruff==0.6.2
10+
ruff==0.6.4
1111
setuptools==74.1.2
1212
tox==4.18.1
1313
tox-gh-actions==3.2.0

xknx/management/management.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def __init__(self) -> None:
159159

160160
async def receive(
161161
self,
162-
timeout: float | None = 3, # noqa: ASYNC109
162+
timeout: float | None = 3,
163163
) -> AsyncGenerator[Telegram, None]:
164164
"""Receive telegrams from the broadcast context."""
165165
try:

xknx/management/procedures.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ async def nm_individual_address_check(
8080

8181
async def nm_individual_address_read(
8282
xknx: XKNX,
83-
timeout: float | None = 3, # noqa: ASYNC109
83+
timeout: float | None = 3,
8484
raise_if_multiple: bool = False,
8585
) -> list[IndividualAddress]:
8686
"""
@@ -185,7 +185,7 @@ async def nm_invididual_address_write(
185185
async def nm_individual_address_serial_number_read(
186186
xknx: XKNX,
187187
serial: bytes,
188-
timeout: float = 3, # noqa: ASYNC109
188+
timeout: float = 3,
189189
) -> IndividualAddress | None:
190190
"""Read individual address from device with specified serial number."""
191191

0 commit comments

Comments
 (0)