We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e48ab8c commit 777af97Copy full SHA for 777af97
1 file changed
auth0/rest.py
@@ -6,14 +6,16 @@
6
import sys
7
from random import randint
8
from time import sleep
9
-from typing import Any, Mapping
+from typing import TYPE_CHECKING, Any, Mapping
10
11
import requests
12
13
from auth0.exceptions import Auth0Error, RateLimitError
14
-from auth0.rest_async import RequestsResponse
15
from auth0.types import RequestData, TimeoutType
16
+if TYPE_CHECKING:
17
+ from auth0.rest_async import RequestsResponse
18
+
19
UNKNOWN_ERROR = "a0.sdk.internal.unknown"
20
21
0 commit comments