Skip to content

Commit

Permalink
pylint updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
iwatkot committed Oct 14, 2024
1 parent fe32811 commit 9fb3e1b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion py3xui/api/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def __init__(
use_tls_verify: bool = True,
custom_certificate_path: str | None = None,
logger: Any | None = None,
): # pylint: disable=R0913
): # pylint: disable=R0913, R0917
self.logger = logger or Logger(__name__)
self.client = ClientApi(
host, username, password, token, use_tls_verify, custom_certificate_path, logger
Expand Down
2 changes: 1 addition & 1 deletion py3xui/api/api_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def __init__(
use_tls_verify: bool = True,
custom_certificate_path: str | None = None,
logger: Any | None = None,
): # pylint: disable=R0913
): # pylint: disable=R0913, R0917
self._host = host.rstrip("/")
self._username = username
self._password = password
Expand Down
2 changes: 1 addition & 1 deletion py3xui/async_api/async_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def __init__(
use_tls_verify: bool = True,
custom_certificate_path: str | None = None,
logger: Any | None = None,
): # pylint: disable=R0913
): # pylint: disable=R0913, R0917
self.logger = logger or Logger(__name__)
self.client = AsyncClientApi(
host, username, password, token, use_tls_verify, custom_certificate_path, logger
Expand Down
2 changes: 1 addition & 1 deletion py3xui/async_api/async_api_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def __init__(
use_tls_verify: bool = True,
custom_certificate_path: str | None = None,
logger: Any | None = None,
): # pylint: disable=R0913
): # pylint: disable=R0913, R0917
self._host = host.rstrip("/")
self._username = username
self._password = password
Expand Down

0 comments on commit 9fb3e1b

Please sign in to comment.