Skip to content

Commit

Permalink
Remove stale print
Browse files Browse the repository at this point in the history
Signed-off-by: Aaron Chong <aaronchongth@gmail.com>
  • Loading branch information
aaronchongth committed Sep 5, 2024
1 parent bfd018a commit ad263a0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/api-server/api_server/authenticator.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ def fastapi_dep(self):
async def dep(authorization: str | None = Header(None)):
if not authorization:
return await self.verify_token(None)
print(token)
token = authorization.split(" ")[1]
return await self.verify_token(token)

Expand Down

0 comments on commit ad263a0

Please sign in to comment.