Skip to content

Commit

Permalink
Merge pull request #9 from SCAI-BIO/weaviate
Browse files Browse the repository at this point in the history
Resolve circular imports
  • Loading branch information
tiadams authored Jul 15, 2024
2 parents 0c9d9ca + 21e4cf6 commit 0ba2d04
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions datastew/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@

# Importing submodules to expose their attributes if needed
from .process import mapping, parsing
from .repository import model, sqllite, base
from .repository import model, sqllite, base, weaviate

__all__ = [
"mapping",
"parsing",
"model",
"base",
"sqllite",
"weaviate",
"DataDictionarySource",
"BaseRepository",
"MPNetAdapter",
"Terminology",
"Concept",
Expand Down
2 changes: 1 addition & 1 deletion datastew/repository/weaviate.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

from weaviate.embedded import EmbeddedOptions

from datastew import BaseRepository
from datastew.repository import Mapping, Terminology, Concept
from datastew.repository.base import BaseRepository
from datastew.repository.weaviate_schema import terminology_schema, concept_schema, mapping_schema


Expand Down

0 comments on commit 0ba2d04

Please sign in to comment.