Skip to content

Commit 88d37b7

Browse files
committed
Dunno why this was passing previously but not now
1 parent c4091f7 commit 88d37b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

msal_extensions/cache_lock.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ def __exit__(self, *args):
3434
# likely that another process has raced this one and ended up clearing or locking the
3535
# file for itself.
3636
os.remove(self._lockpath)
37-
except OSError as ex:
37+
except OSError as ex: # pylint: disable=invalid-name
3838
if ex.errno != errno.ENOENT and ex.errno != errno.EACCES:
3939
raise

0 commit comments

Comments
 (0)