Skip to content

Commit

Permalink
pylint: only disable too-many-arguments for specific modules
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinheavey committed Aug 3, 2021
1 parent ec0b421 commit 2187aad
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 1 deletion.
1 change: 0 additions & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,6 @@ disable=parameter-unpacking,
exception-escape,
comprehension-escape,
duplicate-code,
too-many-arguments

# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
Expand Down
1 change: 1 addition & 0 deletions solana/rpc/core.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pylint: disable=too-many-arguments
"""Helper code for api.py and async_api.py."""
from typing import Any, Dict, List, Optional, Union, Tuple
from warnings import warn
Expand Down
1 change: 1 addition & 0 deletions spl/token/async_client.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pylint: disable=too-many-arguments
"""Async SPL Token program client."""
from __future__ import annotations
from typing import Optional, List, Union, cast
Expand Down
1 change: 1 addition & 0 deletions spl/token/client.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pylint: disable=too-many-arguments
"""SPL Token program client."""
from __future__ import annotations

Expand Down

0 comments on commit 2187aad

Please sign in to comment.