We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7e77b92 + bfe2ab9 commit 007591eCopy full SHA for 007591e
supertokens_python/recipe/multitenancy/syncio/__init__.py
@@ -11,11 +11,13 @@
11
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12
# License for the specific language governing permissions and limitations
13
# under the License.
14
-
15
-from typing import Any, Dict, Optional
+from __future__ import annotations
+from typing import Any, Dict, Optional, TYPE_CHECKING
16
17
from supertokens_python.async_to_sync_wrapper import sync
18
-from ..interfaces import TenantConfig, ProviderConfig
+
19
+if TYPE_CHECKING:
20
+ from ..interfaces import TenantConfig, ProviderConfig
21
22
23
def create_or_update_tenant(
0 commit comments