fix(chalice): fixed circular imports
This commit is contained in:
parent
c7f3c78740
commit
e027a2d016
2 changed files with 2 additions and 2 deletions
|
|
@ -2,7 +2,7 @@ import logging
|
||||||
|
|
||||||
import schemas
|
import schemas
|
||||||
from chalicelib.core import metadata, projects
|
from chalicelib.core import metadata, projects
|
||||||
from chalicelib.core.sessions import sessions_favorite, sessions_legacy
|
from . import sessions_favorite, sessions as sessions_legacy
|
||||||
from chalicelib.utils import pg_client, helper
|
from chalicelib.utils import pg_client, helper
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from chalicelib.core import assist
|
from chalicelib.core import assist
|
||||||
from chalicelib.core.sessions import sessions
|
from . import sessions
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue