Skip to content

Commit 2714b93

Browse files
rustyconoverclaude
andcommitted
Move logger assignment after all imports to fix E402
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent e56bac5 commit 2714b93

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

vgi_rpc/http/_oauth_jwt.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
from collections.abc import Callable, Mapping
1818
from typing import Any
1919

20-
logger = logging.getLogger(__name__)
21-
2220
import falcon
2321
import httpx
2422

@@ -30,6 +28,8 @@
3028

3129
from vgi_rpc.rpc import AuthContext
3230

31+
logger = logging.getLogger(__name__)
32+
3333

3434
def jwt_authenticate(
3535
*,

0 commit comments

Comments
 (0)