Skip to content

Commit 4710268

Browse files
committed
fix: type check errors
1 parent 894b181 commit 4710268

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/webapp/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ async def access_token_from_api_key(
116116
minutes=int(cast(str, env_vars["ACCESS_TOKEN_EXPIRE_MINUTES"]))
117117
)
118118
access_token = create_access_token(
119-
data={"sub": user.email}, # type: ignore
119+
data={"sub": user.email}, # type: ignore
120120
expires_delta=access_token_expires, # type: ignore
121121
)
122122
return Token(access_token=access_token, token_type="bearer")

0 commit comments

Comments
 (0)