diff --git a/pyserve/ctl/commands/health.py b/pyserve/ctl/commands/health.py index 3a25385..e6d2f7c 100644 --- a/pyserve/ctl/commands/health.py +++ b/pyserve/ctl/commands/health.py @@ -4,7 +4,6 @@ pyserve health - Check health of services import asyncio from pathlib import Path - from typing import Any import click diff --git a/pyserve/ctl/commands/service.py b/pyserve/ctl/commands/service.py index 400c690..5f76c33 100644 --- a/pyserve/ctl/commands/service.py +++ b/pyserve/ctl/commands/service.py @@ -4,7 +4,6 @@ pyserve start/stop/restart - Service management commands import asyncio from pathlib import Path - from typing import Any, Dict import click diff --git a/pyserve/ctl/main.py b/pyserve/ctl/main.py index fdfecf3..114a33a 100644 --- a/pyserve/ctl/main.py +++ b/pyserve/ctl/main.py @@ -11,6 +11,7 @@ from typing import TYPE_CHECKING, Optional import click +from .. import __version__ from .commands import ( config_cmd, down_cmd, @@ -26,8 +27,6 @@ from .commands import ( up_cmd, ) -from .. import __version__ - if TYPE_CHECKING: from ..config import Config from .state import StateManager