Skip to content

Commit

Permalink
Migrate to ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
joostlek authored and jbouwh committed Jan 3, 2025
1 parent 308ff20 commit 88b0cdf
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -163,12 +163,10 @@ select = [
"F",
"W",
"B",
"B950"
]
ignore = [
"E203",
"E501",
"W503",
]

[tool.ruff.lint.flake8-pytest-style]
Expand Down
2 changes: 1 addition & 1 deletion tests/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import aiohttp
from aioresponses import aioresponses

from src.incomfortclient import HEATERLIST, Gateway, Heater
from incomfortclient import HEATERLIST, Gateway, Heater

HOSTNAME = "192.168.0.1"

Expand Down
2 changes: 1 addition & 1 deletion tests/test_gateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import pytest
from common import HOSTNAME, SERIAL_NO_0, SERIAL_NO_1, gwy_with_heaterlist

from src.incomfortclient import (
from incomfortclient import (
HEATERLIST,
NULL_SERIAL_NO,
InvalidGateway,
Expand Down

0 comments on commit 88b0cdf

Please sign in to comment.