|
11 | 11 | from typing import Any, ClassVar, Dict, List, Optional, Union |
12 | 12 |
|
13 | 13 | from jsonasobj2 import JsonObj, as_dict |
14 | | -from linkml_runtime.linkml_model.meta import ( |
15 | | - EnumDefinition, |
16 | | - PermissibleValue, |
17 | | - PvFormulaOptions, |
18 | | -) |
19 | | -from linkml_runtime.linkml_model.types import Boolean, Integer, String, Uriorcurie |
| 14 | +from linkml_runtime.linkml_model.meta import (EnumDefinition, PermissibleValue, |
| 15 | + PvFormulaOptions) |
| 16 | +from linkml_runtime.linkml_model.types import (Boolean, Integer, String, |
| 17 | + Uriorcurie) |
20 | 18 | from linkml_runtime.utils.curienamespace import CurieNamespace |
21 | | -from linkml_runtime.utils.dataclass_extensions_376 import ( |
22 | | - dataclasses_init_fn_with_kwargs, |
23 | | -) |
| 19 | +from linkml_runtime.utils.dataclass_extensions_376 import \ |
| 20 | + dataclasses_init_fn_with_kwargs |
24 | 21 | from linkml_runtime.utils.enumerations import EnumDefinitionImpl |
25 | 22 | from linkml_runtime.utils.formatutils import camelcase, sfx, underscore |
26 | | -from linkml_runtime.utils.metamodelcore import ( |
27 | | - Bool, |
28 | | - URIorCURIE, |
29 | | - bnode, |
30 | | - empty_dict, |
31 | | - empty_list, |
32 | | -) |
| 23 | +from linkml_runtime.utils.metamodelcore import (Bool, URIorCURIE, bnode, |
| 24 | + empty_dict, empty_list) |
33 | 25 | from linkml_runtime.utils.slot import Slot |
34 | | -from linkml_runtime.utils.yamlutils import ( |
35 | | - YAMLRoot, |
36 | | - extended_float, |
37 | | - extended_int, |
38 | | - extended_str, |
39 | | -) |
| 26 | +from linkml_runtime.utils.yamlutils import (YAMLRoot, extended_float, |
| 27 | + extended_int, extended_str) |
40 | 28 | from rdflib import Namespace, URIRef |
41 | 29 |
|
42 | 30 | metamodel_version = "1.7.0" |
|
0 commit comments