From 01e0966d5ce0b8dc62df58235d93fc0beadceaea Mon Sep 17 00:00:00 2001 From: Sattvik Chakravarthy Date: Mon, 30 Dec 2024 16:48:07 +0530 Subject: [PATCH] fix: cyclic import --- supertokens_python/recipe/oauth2provider/recipe.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/supertokens_python/recipe/oauth2provider/recipe.py b/supertokens_python/recipe/oauth2provider/recipe.py index aa9ec036..edbb0635 100644 --- a/supertokens_python/recipe/oauth2provider/recipe.py +++ b/supertokens_python/recipe/oauth2provider/recipe.py @@ -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 @@ -50,8 +48,9 @@ from .api import ( - auth_get, login, + login_info_get, + auth_get, end_session_get, end_session_post, logout_post,