1
0
Fork 0
mirror of https://github.com/yavook/kiwi-scp.git synced 2024-11-24 13:43:01 +00:00
This commit is contained in:
Jörn-Michael Miehe 2021-11-02 17:21:31 +01:00
parent 5d69f34de1
commit b16a423a9d
6 changed files with 2 additions and 6 deletions

View file

@ -49,5 +49,3 @@ class KiwiCommandType(Enum):
INSTANCE = auto()
PROJECT = auto()
SERVICE = auto()

View file

@ -58,4 +58,4 @@ def kiwi_command(
return cmd
return decorator
return decorator

View file

@ -1,5 +1,4 @@
import functools
import io
from ipaddress import IPv4Network
from pathlib import Path
from typing import Optional, Dict, List, Any, TextIO

View file

@ -4,7 +4,6 @@ from pathlib import Path
from typing import Generator, List, Tuple, Optional
import attr
import click
from ruamel.yaml.comments import CommentedMap
from ._constants import COMPOSE_FILE_NAME

View file

@ -6,7 +6,6 @@ from .cmd import CmdCommand
from .disable import DisableCommand
from .down import DownCommand
from .enable import EnableCommand
from .init import InitCommand
from .logs import LogsCommand
from .new import NewCommand
from .pull import PullCommand

View file

@ -1,6 +1,7 @@
# system
import logging
import os
import yaml
from ..project import Project