1
0
Fork 0
mirror of https://github.com/yavook/kiwi-scp.git synced 2024-11-21 20:33:00 +00:00

move utils package into top level

This commit is contained in:
Jörn-Michael Miehe 2020-08-19 17:15:00 +02:00
parent 1f1f3b27b2
commit 717010d9b4
15 changed files with 17 additions and 22 deletions

View file

@ -4,7 +4,7 @@ import os
import subprocess
# parent
from ...config import LoadedConfig
from .config import LoadedConfig
def _update_kwargs(**kwargs):

View file

@ -3,8 +3,8 @@ import os
from .executable import Executable
from ..._constants import CONF_DIRECTORY_NAME
from ...config import LoadedConfig
from ._constants import CONF_DIRECTORY_NAME
from .config import LoadedConfig
class Project:

View file

@ -4,11 +4,9 @@ import os
import subprocess
# local
from ._constants import IMAGES_DIRECTORY_NAME, LOCAL_IMAGES_NAME, DEFAULT_IMAGE_NAME
from .executable import Executable
# parent
from ..._constants import IMAGES_DIRECTORY_NAME, LOCAL_IMAGES_NAME, DEFAULT_IMAGE_NAME
def _prefix_path(prefix, path):
if isinstance(path, str):

View file

@ -4,7 +4,7 @@ import subprocess
# local
from . import subcommands
from .subcommands.utils.executable import Executable
from .executable import Executable
from .parser import Parser

View file

@ -2,11 +2,9 @@
import logging
import os
# local
from .utils.project import Projects
# parent
from ..parser import Parser
from ..project import Projects
class SubCommand:

View file

@ -1,16 +1,15 @@
# system
import logging
import os
import subprocess
# local
from ._subcommand import SubCommand
from .utils.project import Projects
from .utils.rootkit import Rootkit, prefix_path_mnt
# parent
from .._constants import CONF_DIRECTORY_NAME
from ..config import LoadedConfig
from ..project import Projects
from ..rootkit import Rootkit, prefix_path_mnt
class ConfCopyCommand(SubCommand):

View file

@ -1,5 +1,4 @@
# local
from .utils.project import Projects
from ._subcommand import ProjectCommand

View file

@ -1,6 +1,6 @@
# local
from ._subcommand import ServiceCommand
from .utils.misc import are_you_sure
from ..misc import are_you_sure
class DownCommand(ServiceCommand):

View file

@ -1,5 +1,4 @@
# local
from .utils.project import Projects
from ._subcommand import ProjectCommand

View file

@ -5,7 +5,9 @@ import yaml
# local
from ._subcommand import ServiceCommand
from .utils.project import Project, Projects
# parent
from ..project import Project, Projects
def _print_list(strings):

View file

@ -4,11 +4,11 @@ import subprocess
# local
from ._subcommand import SubCommand
from .utils.executable import Executable
from .utils.misc import are_you_sure
# parent
from ..config import LoadedConfig
from ..executable import Executable
from ..misc import are_you_sure
def _find_net(net_name):

View file

@ -4,7 +4,6 @@ import os
import shutil
# local
from .utils.project import Projects
from ._subcommand import ProjectCommand
# parent

View file

@ -1,6 +1,8 @@
# local
from ._subcommand import ServiceCommand
from .utils.misc import are_you_sure
# parent
from ..misc import are_you_sure
class UpdateCommand(ServiceCommand):

View file

@ -1 +0,0 @@
# git keep