mirror of
https://github.com/yavook/kiwi-scp.git
synced 2024-11-24 13:43:01 +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()
|
INSTANCE = auto()
|
||||||
PROJECT = auto()
|
PROJECT = auto()
|
||||||
SERVICE = auto()
|
SERVICE = auto()
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -58,4 +58,4 @@ def kiwi_command(
|
||||||
|
|
||||||
return cmd
|
return cmd
|
||||||
|
|
||||||
return decorator
|
return decorator
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
import functools
|
import functools
|
||||||
import io
|
|
||||||
from ipaddress import IPv4Network
|
from ipaddress import IPv4Network
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import Optional, Dict, List, Any, TextIO
|
from typing import Optional, Dict, List, Any, TextIO
|
||||||
|
|
|
@ -4,7 +4,6 @@ from pathlib import Path
|
||||||
from typing import Generator, List, Tuple, Optional
|
from typing import Generator, List, Tuple, Optional
|
||||||
|
|
||||||
import attr
|
import attr
|
||||||
import click
|
|
||||||
from ruamel.yaml.comments import CommentedMap
|
from ruamel.yaml.comments import CommentedMap
|
||||||
|
|
||||||
from ._constants import COMPOSE_FILE_NAME
|
from ._constants import COMPOSE_FILE_NAME
|
||||||
|
|
|
@ -6,7 +6,6 @@ from .cmd import CmdCommand
|
||||||
from .disable import DisableCommand
|
from .disable import DisableCommand
|
||||||
from .down import DownCommand
|
from .down import DownCommand
|
||||||
from .enable import EnableCommand
|
from .enable import EnableCommand
|
||||||
from .init import InitCommand
|
|
||||||
from .logs import LogsCommand
|
from .logs import LogsCommand
|
||||||
from .new import NewCommand
|
from .new import NewCommand
|
||||||
from .pull import PullCommand
|
from .pull import PullCommand
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
# system
|
# system
|
||||||
import logging
|
import logging
|
||||||
import os
|
import os
|
||||||
|
|
||||||
import yaml
|
import yaml
|
||||||
|
|
||||||
from ..project import Project
|
from ..project import Project
|
||||||
|
|
Loading…
Reference in a new issue