Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Before this PR, I've been working on ensuring that the API documentation works, but ran into a snag when it kept up outputting the same error over and over. If anyone is interested in looking at it, here is the link: https://mystb.in/9e8ebb1b188d84be55.
That point aside, I spent the next 2-3 weeks trying to shim it to work, but that failed. I also did contact the SuperTokens Discord team and the library maintainer for the Python SDK actually reached out to me and helped me with his suggestions. Big thanks to sattvikc for pointing me into the right direction.
Turns out:
Annotated[SessionContainer, Depends(verify_session)]
needed to be used instead of the old way of doing it. This is because FastAPI requires Python 3.9+ instances to use that form of typing rather than the old kind.()
withinverify_session
. That fixed it up and it finally works.Types of changes
What types of changes does your code introduce to Kanae?
Put an
x
in the boxes that applyChecklist
Put an
x
in the boxes that apply