remove unnecessary blank lines in health and service command files

This commit is contained in:
Илья Глазунов 2025-12-04 03:17:28 +03:00
parent 3b59994fc9
commit 129785706c
3 changed files with 1 additions and 4 deletions

View File

@ -4,7 +4,6 @@ pyserve health - Check health of services
import asyncio
from pathlib import Path
from typing import Any
import click

View File

@ -4,7 +4,6 @@ pyserve start/stop/restart - Service management commands
import asyncio
from pathlib import Path
from typing import Any, Dict
import click

View File

@ -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