From c328686e1a1ee1fda943ddc5f0aea19a2efbc421 Mon Sep 17 00:00:00 2001 From: KShivendu Date: Wed, 19 Jul 2023 13:38:46 +0530 Subject: [PATCH] fix: Make tenant id compulsory --- supertokens_python/recipe/multitenancy/interfaces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supertokens_python/recipe/multitenancy/interfaces.py b/supertokens_python/recipe/multitenancy/interfaces.py index 3368fc5f9..cbc1f3a58 100644 --- a/supertokens_python/recipe/multitenancy/interfaces.py +++ b/supertokens_python/recipe/multitenancy/interfaces.py @@ -336,6 +336,6 @@ async def login_methods_get( TypeGetAllowedDomainsForTenantId = Callable[ - [Optional[str], Dict[str, Any]], + [str, Dict[str, Any]], Awaitable[List[str]], ]