Skip to content

Commit

Permalink
🚨(pylint) fix linting error introduced by new pylint version
Browse files Browse the repository at this point in the history
pylint version v3.3.1 added a new error and broke our CI
  • Loading branch information
mjeammet committed Sep 30, 2024
1 parent c7ad957 commit 53b34a0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/backend/core/resource_server/clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ class AuthorizationServerClient:
- Setting appropriate headers for secure communication as recommended by RFC drafts.
"""

# ruff: noqa: PLR0913
# ruff: noqa: PLR0913 PLR017
# pylint: disable=too-many-positional-arguments
# pylint: disable=too-many-arguments
def __init__(
self,
Expand Down

0 comments on commit 53b34a0

Please sign in to comment.