Skip to content

Commit

Permalink
Use abosulte imports in a few more places
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgianaElena committed Oct 18, 2023
1 parent 144560a commit 0e9e626
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions deployer/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@
import deployer.commands.grafana.tokens # noqa: F401
import deployer.commands.validate.config # noqa: F401
import deployer.keys.decrypt_age # noqa: F401

from .cli_app import app
from deployer.cli_app import app


def main():
Expand Down
3 changes: 1 addition & 2 deletions deployer/infra_components/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import tempfile
from contextlib import contextmanager

from deployer.infra_components.hub import Hub
from deployer.utils.env_vars_management import unset_env_vars
from deployer.utils.file_acquisition import (
HELM_CHARTS_DIR,
Expand All @@ -12,8 +13,6 @@
)
from deployer.utils.rendering import print_colour

from .hub import Hub


class Cluster:
"""
Expand Down
2 changes: 1 addition & 1 deletion deployer/keys/decrypt_age.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import typer

from ..cli_app import app
from deployer.cli_app import app


@contextmanager
Expand Down

0 comments on commit 0e9e626

Please sign in to comment.