Skip to content

Commit

Permalink
fix: cyclic import
Browse files Browse the repository at this point in the history
  • Loading branch information
sattvikc committed Dec 30, 2024
1 parent f575893 commit 01e0966
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions supertokens_python/recipe/oauth2provider/recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
from supertokens_python.recipe.oauth2provider.api.introspect_token import (
introspect_token_post,
)
from supertokens_python.recipe.oauth2provider.api.login import login
from supertokens_python.recipe.oauth2provider.api.login_info import login_info_get
from supertokens_python.recipe.oauth2provider.exceptions import OAuth2ProviderError
from supertokens_python.recipe_module import APIHandled, RecipeModule
from supertokens_python.types import User
Expand Down Expand Up @@ -50,8 +48,9 @@


from .api import (
auth_get,
login,
login_info_get,
auth_get,
end_session_get,
end_session_post,
logout_post,
Expand Down

0 comments on commit 01e0966

Please sign in to comment.