Skip to content

Commit 888661b

Browse files
committed
fix: unnecessary imports introduced in merge
1 parent 55847f8 commit 888661b

File tree

13 files changed

+0
-13
lines changed

13 files changed

+0
-13
lines changed

supertokens_python/recipe/accountlinking/recipe.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
log_debug_message,
2424
)
2525
from supertokens_python.normalised_url_path import NormalisedURLPath
26-
from supertokens_python.plugins import OverrideMap, apply_plugins
2726
from supertokens_python.process_state import PROCESS_STATE, ProcessState
2827
from supertokens_python.querier import Querier
2928
from supertokens_python.recipe_module import APIHandled, RecipeModule

supertokens_python/recipe/dashboard/recipe.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
from typing import TYPE_CHECKING, Any, Awaitable, Callable, Dict, List, Optional
1818

1919
from supertokens_python.normalised_url_path import NormalisedURLPath
20-
from supertokens_python.plugins import OverrideMap, apply_plugins
2120
from supertokens_python.recipe.dashboard.api.multitenancy.create_or_update_third_party_config import (
2221
handle_create_or_update_third_party_config,
2322
)

supertokens_python/recipe/emailpassword/recipe.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
from supertokens_python.ingredients.emaildelivery import EmailDeliveryIngredient
2121
from supertokens_python.ingredients.emaildelivery.types import EmailDeliveryConfig
2222
from supertokens_python.normalised_url_path import NormalisedURLPath
23-
from supertokens_python.plugins import OverrideMap, apply_plugins
2423
from supertokens_python.recipe.emailpassword.types import (
2524
EmailPasswordIngredients,
2625
EmailTemplateVars,

supertokens_python/recipe/jwt/recipe.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
from os import environ
1717
from typing import TYPE_CHECKING, Any, Dict, List, Optional, Union
1818

19-
from supertokens_python.plugins import OverrideMap, apply_plugins
2019
from supertokens_python.querier import Querier
2120
from supertokens_python.recipe.jwt.api.implementation import APIImplementation
2221
from supertokens_python.recipe.jwt.api.jwks_get import jwks_get

supertokens_python/recipe/multifactorauth/recipe.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
from supertokens_python.exceptions import SuperTokensError, raise_general_exception
2020
from supertokens_python.framework import BaseRequest, BaseResponse
2121
from supertokens_python.normalised_url_path import NormalisedURLPath
22-
from supertokens_python.plugins import OverrideMap, apply_plugins
2322
from supertokens_python.post_init_callbacks import PostSTInitCallbacks
2423
from supertokens_python.querier import Querier
2524
from supertokens_python.recipe.multifactorauth.api import (

supertokens_python/recipe/multitenancy/recipe.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
from typing import TYPE_CHECKING, Any, Dict, List, Optional, Union
1818

1919
from supertokens_python.exceptions import SuperTokensError, raise_general_exception
20-
from supertokens_python.plugins import OverrideMap, apply_plugins
2120
from supertokens_python.recipe.session.claim_base_classes.primitive_array_claim import (
2221
PrimitiveArrayClaim,
2322
)

supertokens_python/recipe/oauth2provider/recipe.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
from typing import TYPE_CHECKING, Any, Dict, List, Optional, Union
1919

2020
from supertokens_python.exceptions import SuperTokensError, raise_general_exception
21-
from supertokens_python.plugins import OverrideMap, apply_plugins
2221
from supertokens_python.recipe.oauth2provider.exceptions import OAuth2ProviderError
2322
from supertokens_python.recipe_module import APIHandled, RecipeModule
2423
from supertokens_python.types import User

supertokens_python/recipe/openid/recipe.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
from os import environ
1717
from typing import TYPE_CHECKING, Any, Dict, List, Union
1818

19-
from supertokens_python.plugins import OverrideMap, apply_plugins
2019
from supertokens_python.querier import Querier
2120

2221
from .api.implementation import APIImplementation

supertokens_python/recipe/passwordless/recipe.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
from supertokens_python.ingredients.emaildelivery import EmailDeliveryIngredient
2323
from supertokens_python.ingredients.emaildelivery.types import EmailDeliveryConfig
2424
from supertokens_python.ingredients.smsdelivery import SMSDeliveryIngredient
25-
from supertokens_python.plugins import OverrideMap, apply_plugins
2625
from supertokens_python.querier import Querier
2726
from supertokens_python.recipe.multifactorauth.recipe import MultiFactorAuthRecipe
2827
from supertokens_python.recipe.multifactorauth.types import (

supertokens_python/recipe/thirdparty/recipe.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
from typing import TYPE_CHECKING, Any, Dict, List, Union
1818

1919
from supertokens_python.normalised_url_path import NormalisedURLPath
20-
from supertokens_python.plugins import OverrideMap, apply_plugins
2120
from supertokens_python.querier import Querier
2221
from supertokens_python.recipe_module import APIHandled, RecipeModule
2322

0 commit comments

Comments
 (0)