diff --git a/startleft/startleft/api/controllers/health/health_controller.py b/startleft/startleft/api/controllers/health/health_controller.py index 0ca8f680..c48e23d6 100644 --- a/startleft/startleft/api/controllers/health/health_controller.py +++ b/startleft/startleft/api/controllers/health/health_controller.py @@ -1,7 +1,7 @@ from fastapi import APIRouter from fastapi.responses import JSONResponse -from startleft.startleft.version import version +from version import version PREFIX = '' URL = '/health' diff --git a/startleft/startleft/cli/cli.py b/startleft/startleft/cli/cli.py index 32ec6695..9c1c7119 100644 --- a/startleft/startleft/cli/cli.py +++ b/startleft/startleft/cli/cli.py @@ -16,11 +16,11 @@ from slp_base.slp_base.provider_resolver import ProviderResolver from slp_cft.slp_cft.cft_searcher import CloudformationSearcher from slp_tf.slp_tf.tf_searcher import TerraformSearcher -from startleft.startleft.cli.clioptions.exclusion_option import Exclusion -from startleft.startleft.messages import * -from startleft.startleft.version import version from startleft.startleft.api import fastapi_server +from startleft.startleft.cli.clioptions.exclusion_option import Exclusion from startleft.startleft.log import get_log_level, configure_logging +from startleft.startleft.messages import * +from version import version logger = logging.getLogger(__name__) provider_resolver = ProviderResolver(PROCESSORS) diff --git a/startleft/startleft/version.py b/version.py similarity index 100% rename from startleft/startleft/version.py rename to version.py