Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix returned type from get_token_from_bearer #7

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

CGarces-Apser
Copy link

@CGarces-Apser CGarces-Apser commented Apr 12, 2024

Description

Return type of get_token_from_bearer should be str, also the request parameter is not used.

Checklist

  • The PR title has the correct prefix
  • PR is linked to the corresponding issue
  • All commits are signed-off (git commit -s ...) to provide the DCO

Copy link
Collaborator

@Sambigeara Sambigeara left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for raising. The demo does need a bit of love regarding type annotations in general -- I'll revisit properly at some point in the future.

@@ -58,9 +58,8 @@ def verify_jwt(credentials: Credentials) -> bool:


async def get_token_from_bearer(
request: Request,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The purpose of this was just to demonstrate that request is available in the dependable function. We could change to an unnamed var? E.g. _: Request

http_credentials: HTTPAuthorizationCredentials = Depends(bearer_scheme),
) -> Credentials:
) -> str:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we'd have to either specify an Optional[str], or perhaps more correctly; return an empty string in the case when http_credentials does not resolve.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants