Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ruff #456

Merged
merged 1 commit into from
Feb 5, 2025
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
14 changes: 7 additions & 7 deletions aiotankerkoenig/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
from .models import PriceInfo, Station

__all__ = [
"GasType",
"PriceInfo",
"Sort",
"Station",
"Status",
"Tankerkoenig",
"TankerkoenigError",
"TankerkoenigConnectionError",
"TankerkoenigInvalidKeyError",
"TankerkoenigConnectionTimeoutError",
"TankerkoenigError",
"TankerkoenigInvalidKeyError",
"TankerkoenigRateLimitError",
"GasType",
"Sort",
"Status",
"PriceInfo",
"Station",
]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ ignore = [
"D417", # False positives in some occasions
"PLR2004", # Just annoying, not really useful
"PLR0913", # Too many arguments
"TCH001",
"TC001",
]
select = ["ALL"]

Expand Down
2 changes: 1 addition & 1 deletion tests/ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ lint.extend-ignore = [
"S105", # Detection of passwords...
"S106", # Detection of passwords...
"SLF001", # Tests will access private/protected members...
"TCH002", # pytest doesn't like this one...
"TC002", # pytest doesn't like this one...
"PLR0913", # we're overwriting function that has many arguments
]