Skip to content

Commit c750097

Browse files
committed
Linting
1 parent 61c7497 commit c750097

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/test_auth.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,10 +251,9 @@ async def test_jwks_cache_thread_safety(self):
251251

252252
# This test verifies that the lock is a proper threading.Lock object
253253
# and can be used in a context manager
254-
import threading
255254

256255
# Verify it's a proper Lock object that supports context manager protocol
257-
assert hasattr(cache._lock, '__enter__') and hasattr(cache._lock, '__exit__')
256+
assert hasattr(cache._lock, "__enter__") and hasattr(cache._lock, "__exit__")
258257

259258
# Test that we can acquire and release the lock
260259
with cache._lock:

0 commit comments

Comments
 (0)