We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba841e6 commit 3b4e30bCopy full SHA for 3b4e30b
msal_extensions/libsecret.py
@@ -40,7 +40,9 @@
40
class LibSecretAgent(object):
41
"""A loader/saver built on top of low-level libsecret"""
42
# Inspired by https://developer.gnome.org/libsecret/unstable/py-examples.html
43
- def __init__( # pylint: disable=too-many-arguments
+ def __init__(
44
+ # pylint: disable=too-many-arguments
45
+ # pylint: disable=too-many-positional-arguments
46
self,
47
schema_name,
48
attributes, # {"name": "value", ...}
tox.ini
@@ -8,3 +8,10 @@ passenv =
8
9
commands =
10
pytest
11
+
12
+[testenv:lint]
13
+deps =
14
+ pylint
15
+commands =
16
+ pylint msal_extensions
17
0 commit comments