Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ignore too-many-arguments warning #20

Merged
merged 1 commit into from
Jul 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ max-line-length=120

disable=duplicate-code, # reports false alarms AND can't be disabled locally; pylint issue #214
fixme, # ignore TODOs
redefined-outer-name
redefined-outer-name,
too-many-arguments

[BASIC]
good-names=i,j,k,
Expand Down
1 change: 0 additions & 1 deletion testsuite/rhsso/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ class RHSSOServiceConfiguration:
Wrapper for all information that tests need to know about RHSSO
"""

# pylint: disable=too-many-arguments
def __init__(self, rhsso: RHSSO, realm: Realm, client: Client, user, username, password) -> None:
self.rhsso = rhsso
self.realm = realm
Expand Down