We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
types.py
1 parent 777af97 commit 8729d32Copy full SHA for 8729d32
1 file changed
auth0/types.py
@@ -1,7 +1,5 @@
1
-from __future__ import annotations
+from typing import Any, Dict, List, Tuple, Union
2
3
-from typing import Any
+TimeoutType = Union[float, Tuple[float, float]]
4
5
-TimeoutType = float | tuple[float, float]
6
-
7
-RequestData = dict[str, Any] | list[Any]
+RequestData = Union[Dict[str, Any], List[Any]]
0 commit comments