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 2c1cb70 commit 97de7c5Copy full SHA for 97de7c5
linkml_runtime/utils/metamodelcore.py
@@ -7,7 +7,6 @@
7
from typing import Union, Optional
8
from urllib.parse import urlparse
9
10
-import isodate
11
from rdflib import Literal, BNode, URIRef
12
from rdflib.namespace import is_ncname
13
from rdflib.term import Identifier as rdflib_Identifier
@@ -19,6 +18,9 @@
19
18
from linkml_runtime.utils.uri_validator import validate_uri_reference
20
from linkml_runtime.utils.uri_validator import validate_curie
21
+if sys.version_info < (3, 11):
22
+ import isodate
23
+
24
# Reference Decimal to make sure it stays in the imports
25
_z = Decimal(1)
26
0 commit comments