From a787c837e7823f5821423d22041538028659a47b Mon Sep 17 00:00:00 2001 From: ldericher <40151420+ldericher@users.noreply.github.com> Date: Mon, 21 Feb 2022 16:45:10 +0100 Subject: [PATCH] cleanup --- kiwi_scp/commands/cmd_new.py | 2 -- kiwi_scp/service.py | 1 - tests/test_services.py | 2 +- 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/kiwi_scp/commands/cmd_new.py b/kiwi_scp/commands/cmd_new.py index f554661..0ac1394 100644 --- a/kiwi_scp/commands/cmd_new.py +++ b/kiwi_scp/commands/cmd_new.py @@ -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 diff --git a/kiwi_scp/service.py b/kiwi_scp/service.py index e2caa41..220aa63 100644 --- a/kiwi_scp/service.py +++ b/kiwi_scp/service.py @@ -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}'") - diff --git a/tests/test_services.py b/tests/test_services.py index d01a568..cfb7716 100644 --- a/tests/test_services.py +++ b/tests/test_services.py @@ -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: