From abf24b3a4048ee4665ae05e7615b7782f40242f6 Mon Sep 17 00:00:00 2001 From: Ricardo Branco Date: Sat, 7 Dec 2024 16:08:21 +0100 Subject: [PATCH] Add too-many-positional-arguments pylint disable --- bugme.py | 2 +- services/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bugme.py b/bugme.py index 6229bf9..469f8f2 100755 --- a/bugme.py +++ b/bugme.py @@ -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, diff --git a/services/__init__.py b/services/__init__.py index 08c3ba7..0ee0979 100644 --- a/services/__init__.py +++ b/services/__init__.py @@ -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,