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.
1 parent e14fdf0 commit 4a97fa6Copy full SHA for 4a97fa6
scim2_models/reference.py
@@ -1,4 +1,3 @@
1
-import sys
2
from collections import UserString
3
from typing import Any
4
from typing import Generic
@@ -12,11 +11,7 @@
12
11
13
from .utils import UNION_TYPES
14
15
-# TypeVar with default parameter is available in Python 3.13+
16
-if sys.version_info >= (3, 13):
17
- ReferenceTypes = TypeVar("ReferenceTypes", default=Any)
18
-else: # pragma: no cover
19
- ReferenceTypes = TypeVar("ReferenceTypes")
+ReferenceTypes = TypeVar("ReferenceTypes")
20
21
URIReference = NewType("URIReference", str)
22
ExternalReference = NewType("ExternalReference", str)
0 commit comments