Reorganization

This commit is contained in:
Andrei Bondarenko 2021-07-24 20:59:38 +02:00
parent c64e348bf2
commit f44c888ace
26 changed files with 3 additions and 3 deletions

View file

View file

@ -1,4 +1,4 @@
from state.pystate import PyState from services.bottom.pystate import PyState
class DevState(PyState): class DevState(PyState):

View file

@ -1,6 +1,6 @@
from typing import Any, List, Tuple, Optional from typing import Any, List, Tuple, Optional
from state.base import State, Node, Edge, Element from services.bottom.base import State, Node, Edge, Element
class PyState(State): class PyState(State):

View file

View file

View file

@ -1,5 +1,5 @@
import pytest import pytest
from state.pystate import PyState from services.bottom.pystate import PyState
# from state.rdfstate import RDFState # from state.rdfstate import RDFState
# from state.neo4jstate import Neo4jState # from state.neo4jstate import Neo4jState