Skip to content

Commit

Permalink
Fixing new pylint complaint
Browse files Browse the repository at this point in the history
  • Loading branch information
rayluo committed Jan 23, 2025
1 parent ba841e6 commit 3b4e30b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
4 changes: 3 additions & 1 deletion msal_extensions/libsecret.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@
class LibSecretAgent(object):
"""A loader/saver built on top of low-level libsecret"""
# Inspired by https://developer.gnome.org/libsecret/unstable/py-examples.html
def __init__( # pylint: disable=too-many-arguments
def __init__(
# pylint: disable=too-many-arguments
# pylint: disable=too-many-positional-arguments
self,
schema_name,
attributes, # {"name": "value", ...}
Expand Down
7 changes: 7 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,10 @@ passenv =

commands =
pytest

[testenv:lint]
deps =
pylint
commands =
pylint msal_extensions

0 comments on commit 3b4e30b

Please sign in to comment.