We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4091f7 commit 88d37b7Copy full SHA for 88d37b7
msal_extensions/cache_lock.py
@@ -34,6 +34,6 @@ def __exit__(self, *args):
34
# likely that another process has raced this one and ended up clearing or locking the
35
# file for itself.
36
os.remove(self._lockpath)
37
- except OSError as ex:
+ except OSError as ex: # pylint: disable=invalid-name
38
if ex.errno != errno.ENOENT and ex.errno != errno.EACCES:
39
raise
0 commit comments