Skip to content

Commit 3b4e30b

Browse files
committed
Fixing new pylint complaint
1 parent ba841e6 commit 3b4e30b

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

msal_extensions/libsecret.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@
4040
class LibSecretAgent(object):
4141
"""A loader/saver built on top of low-level libsecret"""
4242
# Inspired by https://developer.gnome.org/libsecret/unstable/py-examples.html
43-
def __init__( # pylint: disable=too-many-arguments
43+
def __init__(
44+
# pylint: disable=too-many-arguments
45+
# pylint: disable=too-many-positional-arguments
4446
self,
4547
schema_name,
4648
attributes, # {"name": "value", ...}

tox.ini

+7
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,10 @@ passenv =
88

99
commands =
1010
pytest
11+
12+
[testenv:lint]
13+
deps =
14+
pylint
15+
commands =
16+
pylint msal_extensions
17+

0 commit comments

Comments
 (0)