Skip to content
Snippets Groups Projects
Commit 9cfadd69 authored by Robert Goldmann's avatar Robert Goldmann
Browse files

fixed imports (use module name)

parent d188d4ba
No related branches found
No related tags found
No related merge requests found
Showing
with 17 additions and 17 deletions
...@@ -5,12 +5,12 @@ from TheCodeLabs_FlaskUtils.FlaskBaseApp import FlaskBaseApp ...@@ -5,12 +5,12 @@ from TheCodeLabs_FlaskUtils.FlaskBaseApp import FlaskBaseApp
from flask import Flask from flask import Flask
from flask_socketio import SocketIO from flask_socketio import SocketIO
from blueprints import Routes from dashboard_leaf.blueprints import Routes
from logic import Constants from dashboard_leaf.logic import Constants
from logic.Constants import CONFIG_DIR from dashboard_leaf.logic.Constants import CONFIG_DIR
from logic.page.PageManager import PageManager from dashboard_leaf.logic.page.PageManager import PageManager
from logic.service.ServiceRegistry import ServiceRegistry from dashboard_leaf.logic.service.ServiceRegistry import ServiceRegistry
from logic.tile.TileScheduler import TileScheduler from dashboard_leaf.logic.tile.TileScheduler import TileScheduler
LOGGER = DefaultLogger().create_logger_if_not_exists(Constants.APP_NAME) LOGGER = DefaultLogger().create_logger_if_not_exists(Constants.APP_NAME)
......
File moved
File moved
File moved
File moved
...@@ -4,7 +4,7 @@ from datetime import datetime ...@@ -4,7 +4,7 @@ from datetime import datetime
import pytz import pytz
import requests import requests
from logic import Constants from dashboard_leaf.logic import Constants
def join_url_parts(*args: str) -> str: def join_url_parts(*args: str) -> str:
......
...@@ -4,7 +4,7 @@ import pkgutil ...@@ -4,7 +4,7 @@ import pkgutil
from abc import ABC, abstractmethod from abc import ABC, abstractmethod
from typing import List, Type from typing import List, Type
from logic import Constants from dashboard_leaf.logic import Constants
LOGGER = logging.getLogger(Constants.APP_NAME) LOGGER = logging.getLogger(Constants.APP_NAME)
......
File moved
File moved
...@@ -5,10 +5,10 @@ from typing import List, Dict ...@@ -5,10 +5,10 @@ from typing import List, Dict
from flask import Flask from flask import Flask
from logic import Constants from dashboard_leaf.logic import Constants
from logic.page.PageInstance import PageInstance, TileLayoutSettings from dashboard_leaf.logic.page.PageInstance import PageInstance, TileLayoutSettings
from logic.tile import TileScheduler from dashboard_leaf.logic.tile import TileScheduler
from logic.tile.TileRegistry import TileRegistry from dashboard_leaf.logic.tile.TileRegistry import TileRegistry
LOGGER = logging.getLogger(Constants.APP_NAME) LOGGER = logging.getLogger(Constants.APP_NAME)
......
File moved
...@@ -5,8 +5,8 @@ from typing import List, Dict ...@@ -5,8 +5,8 @@ from typing import List, Dict
from TheCodeLabs_BaseUtils.MultiCacheKeyService import MultiCacheKeyService from TheCodeLabs_BaseUtils.MultiCacheKeyService import MultiCacheKeyService
from logic import Constants from dashboard_leaf.logic import Constants
from logic.service.ServiceRegistry import ServiceRegistry from dashboard_leaf.logic.service.ServiceRegistry import ServiceRegistry
LOGGER = logging.getLogger(Constants.APP_NAME) LOGGER = logging.getLogger(Constants.APP_NAME)
......
...@@ -5,8 +5,8 @@ from typing import Type ...@@ -5,8 +5,8 @@ from typing import Type
from TheCodeLabs_BaseUtils.MultiCacheKeyService import MultiCacheKeyService from TheCodeLabs_BaseUtils.MultiCacheKeyService import MultiCacheKeyService
from logic import Constants from dashboard_leaf.logic import Constants
from logic.Registry import Registry from dashboard_leaf.logic.Registry import Registry
LOGGER = logging.getLogger(Constants.APP_NAME) LOGGER = logging.getLogger(Constants.APP_NAME)
......
...@@ -4,7 +4,7 @@ from typing import Dict ...@@ -4,7 +4,7 @@ from typing import Dict
import requests import requests
from TheCodeLabs_BaseUtils.MultiCacheKeyService import MultiCacheKeyService from TheCodeLabs_BaseUtils.MultiCacheKeyService import MultiCacheKeyService
from logic import Helpers from dashboard_leaf.logic import Helpers
class StorageLeafService(MultiCacheKeyService): class StorageLeafService(MultiCacheKeyService):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment