Skip to content

Commit

Permalink
bump pylint pre-commit version
Browse files Browse the repository at this point in the history
  • Loading branch information
btschwertfeger committed Dec 6, 2023
1 parent d821a4d commit 7b1e2c4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ repos:
- --show-source
- --statistics
- repo: https://github.com/pycqa/pylint
rev: v2.17.5
rev: v3.0.2
hooks:
- id: pylint
name: pylint
Expand Down
4 changes: 2 additions & 2 deletions kraken/base_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def __init__(
self.__session: requests.Session = requests.Session()
self.__session.headers.update({"User-Agent": "python-kraken-sdk"})

def _request( # noqa: PLR0913
def _request( # noqa: PLR0913 # pylint: disable=too-many-arguments
self: KrakenSpotBaseAPI,
method: str,
uri: str,
Expand Down Expand Up @@ -458,7 +458,7 @@ def __init__(
self.__session: requests.Session = requests.Session()
self.__session.headers.update({"User-Agent": "python-kraken-sdk"})

def _request( # noqa: PLR0913
def _request( # noqa: PLR0913 # pylint: disable=too-many-arguments
self: KrakenFuturesBaseAPI,
method: str,
uri: str,
Expand Down
2 changes: 1 addition & 1 deletion kraken/futures/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def get_notifications(
extra_params=extra_params,
)

def get_account_log( # noqa: PLR0913
def get_account_log( # noqa: PLR0913 # pylint: disable=too-many-arguments
self: User,
before: Optional[str | int] = None,
count: Optional[str | int] = None,
Expand Down
2 changes: 1 addition & 1 deletion kraken/spot/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,7 @@ def get_trade_volume(
)

@ensure_string("fields")
def request_export_report( # noqa: PLR0913
def request_export_report( # noqa: PLR0913 # pylint: disable=too-many-arguments
self: User,
report: str,
description: str,
Expand Down

0 comments on commit 7b1e2c4

Please sign in to comment.