Skip to content

Commit

Permalink
fix import locations
Browse files Browse the repository at this point in the history
  • Loading branch information
sneakers-the-rat committed Oct 28, 2024
1 parent 23b8ea9 commit c71fb0c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions linkml_runtime/dumpers/delimited_file_dumper.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
from abc import ABC, abstractmethod
from typing import Union

from json_flattener import flatten_to_csv
from json_flattener import GlobalConfig, flatten_to_csv
from pydantic import BaseModel

from linkml_runtime.dumpers.dumper_root import Dumper
from linkml_runtime.dumpers.json_dumper import JSONDumper
from linkml_runtime.linkml_model.meta import SchemaDefinition, SlotDefinitionName
from linkml_runtime.utils.csvutils import GlobalConfig, get_configmap
from linkml_runtime.utils.csvutils import get_configmap
from linkml_runtime.utils.schemaview import SchemaView
from linkml_runtime.utils.yamlutils import YAMLRoot

Expand Down
4 changes: 2 additions & 2 deletions linkml_runtime/dumpers/rdflib_dumper.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
from rdflib.term import BNode, Literal, Node

from linkml_runtime.dumpers.dumper_root import Dumper
from linkml_runtime.linkml_model import SlotDefinition
from linkml_runtime.utils.schemaview import ElementName, PermissibleValue, PermissibleValueText, SchemaView
from linkml_runtime.linkml_model import ElementName, PermissibleValue, PermissibleValueText, SlotDefinition
from linkml_runtime.utils.schemaview import SchemaView
from linkml_runtime.utils.yamlutils import YAMLRoot

logger = logging.getLogger(__name__)
Expand Down

0 comments on commit c71fb0c

Please sign in to comment.