Skip to content

Commit

Permalink
bump ruff to 0.4.4 (#452)
Browse files Browse the repository at this point in the history
* bump ruff to 0.4.4

* Fix failing lint
  • Loading branch information
Kane610 authored May 21, 2024
1 parent af7ddb3 commit 27ba39e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.3.0
rev: v0.4.4
hooks:
- id: ruff
args:
Expand Down
2 changes: 1 addition & 1 deletion axis/models/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class ApiResponse(ApiResponseSupportDecode, Generic[ApiDataT]):


@dataclass
class ApiRequest(ABC):
class ApiRequest:
"""Create API request body."""

method: str = field(init=False)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ requirements_test = [
"pytest-asyncio==0.23.7",
"pytest-cov==5.0.0",
"respx==0.21.1",
"ruff==0.4.2",
"ruff==0.4.4",
"types-orjson==3.6.2",
"types-xmltodict==v0.13.0.3",
]
Expand Down

0 comments on commit 27ba39e

Please sign in to comment.