Skip to content

Commit 2fc1ff6

Browse files
committed
Fix mypy one more time
1 parent b4b7466 commit 2fc1ff6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

brood/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ async def delete_token_handler(
275275
276276
- **target_token** (uuid, null): Token ID to revoke
277277
"""
278-
authorization: str = request.headers.get("Authorization")
278+
authorization: str = request.headers.get("Authorization") # type: ignore
279279
scheme_raw, _ = get_authorization_scheme_param(authorization)
280280
scheme = scheme_raw.lower()
281281
if scheme != "bearer":

0 commit comments

Comments
 (0)