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,