mirror of
https://github.com/yavook/kiwi-scp.git
synced 2024-11-24 05:33:00 +00:00
Reformat
This commit is contained in:
parent
5d69f34de1
commit
b16a423a9d
6 changed files with 2 additions and 6 deletions
|
@ -49,5 +49,3 @@ class KiwiCommandType(Enum):
|
|||
INSTANCE = auto()
|
||||
PROJECT = auto()
|
||||
SERVICE = auto()
|
||||
|
||||
|
||||
|
|
|
@ -58,4 +58,4 @@ def kiwi_command(
|
|||
|
||||
return cmd
|
||||
|
||||
return decorator
|
||||
return decorator
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import functools
|
||||
import io
|
||||
from ipaddress import IPv4Network
|
||||
from pathlib import Path
|
||||
from typing import Optional, Dict, List, Any, TextIO
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
# system
|
||||
import logging
|
||||
import os
|
||||
|
||||
import yaml
|
||||
|
||||
from ..project import Project
|
||||
|
|
Loading…
Reference in a new issue