Skip to content

Commit

Permalink
Ruff seems to not count self as argument any more
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito committed Jul 19, 2024
1 parent 38b14c9 commit e53c7ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ars/adapters/outbound/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ async def construct(
async with httpx.AsyncClient(timeout=TIMEOUT) as client:
yield cls(config=config, client=client)

async def grant_download_access( # noqa: PLR0913
async def grant_download_access(
self,
user_id: str,
iva_id: str,
Expand Down
2 changes: 1 addition & 1 deletion src/ars/ports/outbound/access_grants.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class AccessGrantsInvalidPeriodError(AccessGrantsError):
"""Raised when there was an error in the validity period."""

@abstractmethod
async def grant_download_access( # noqa: PLR0913
async def grant_download_access(
self,
user_id: str,
iva_id: str,
Expand Down

0 comments on commit e53c7ca

Please sign in to comment.