Skip to content

Commit

Permalink
Add too-many-positional-arguments pylint disable
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardobranco777 committed Dec 7, 2024
1 parent 0c96b32 commit abf24b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bugme.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def print_issue(
)


def print_issues( # pylint: disable=too-many-arguments
def print_issues( # pylint: disable=too-many-arguments,too-many-positional-arguments
creds: dict[str, dict[str, str]],
urltags: list[str] | None,
time_format: str,
Expand Down
2 changes: 1 addition & 1 deletion services/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def __init__(self, url: str, token: str | None) -> None:
self.session.hooks["response"].append(debugme)
self.timeout = 10

def _get_paginated( # pylint: disable=too-many-arguments,too-many-locals
def _get_paginated( # pylint: disable=too-many-arguments,too-many-positional-arguments,too-many-locals
self,
url: str,
headers: dict[str, Any] | None = None,
Expand Down

0 comments on commit abf24b3

Please sign in to comment.