From 1a9f95299aeeaf8c5d2763e5f943c7e7eec25d8a Mon Sep 17 00:00:00 2001 From: William Easton Date: Tue, 7 Oct 2025 17:40:52 -0400 Subject: [PATCH] lint cuz i dont have precommit --- tests/server/auth/test_oauth_proxy_storage.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/server/auth/test_oauth_proxy_storage.py b/tests/server/auth/test_oauth_proxy_storage.py index f68674fa3..9dfae3658 100644 --- a/tests/server/auth/test_oauth_proxy_storage.py +++ b/tests/server/auth/test_oauth_proxy_storage.py @@ -27,9 +27,7 @@ class TestOAuthProxyStorage: return verifier @pytest.fixture - async def temp_storage( - self - ) -> AsyncGenerator[MultiDiskStore, None]: + async def temp_storage(self) -> AsyncGenerator[MultiDiskStore, None]: """Create file-based storage for testing.""" with tempfile.TemporaryDirectory() as temp_dir: disk_store = MultiDiskStore(base_directory=Path(temp_dir))