Skip to content

Commit 75627a6

Browse files
appleboyclaude
andcommitted
style(authflow): remove unused noqa directive in authcode
- Remove unused `noqa: N802` directive from `do_GET` method Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
1 parent 4f2c9f2 commit 75627a6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/authgate/authflow/authcode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class _CallbackHandler(BaseHTTPRequestHandler):
2525
result: dict[str, str] # shared via class attribute set by factory
2626
event: threading.Event
2727

28-
def do_GET(self) -> None: # noqa: N802
28+
def do_GET(self) -> None:
2929
parsed = urlparse(self.path)
3030
if parsed.path != "/callback":
3131
self.send_response(404)

0 commit comments

Comments
 (0)