This commit is contained in:
Jörn-Michael Miehe 2022-02-21 16:45:10 +01:00
parent 2b0ec1cea2
commit a787c837e7
3 changed files with 1 additions and 4 deletions

View file

@ -1,8 +1,6 @@
import os
import shutil
import click
from .cmd import KiwiCommandType, KiwiCommand
from .decorators import kiwi_command
from .._constants import DEFAULT_DOCKER_COMPOSE_NAME, COMPOSE_FILE_NAME, RESERVED_PROJECT_NAMES

View file

@ -59,4 +59,3 @@ class Service:
elif nxt is not None:
# try next in list
_logger.info(f"Executable '{cur}' not found in container, trying '{nxt}'")

View file

@ -1,7 +1,7 @@
from ruamel.yaml import CommentedMap
from kiwi_scp.services import Services
from kiwi_scp.service import Service
from kiwi_scp.services import Services
class TestServices: