From 129785706c8db186c59b253f463720542e776446 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=98=D0=BB=D1=8C=D1=8F=20=D0=93=D0=BB=D0=B0=D0=B7=D1=83?= =?UTF-8?q?=D0=BD=D0=BE=D0=B2?= Date: Thu, 4 Dec 2025 03:17:28 +0300 Subject: [PATCH] remove unnecessary blank lines in health and service command files --- pyserve/ctl/commands/health.py | 1 - pyserve/ctl/commands/service.py | 1 - pyserve/ctl/main.py | 3 +-- 3 files changed, 1 insertion(+), 4 deletions(-) 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