style: fix lint errors (line length, import sort)

This commit is contained in:
2026-07-05 15:52:41 -07:00
parent d14b9eafa7
commit f641e7f8d3
3 changed files with 10 additions and 3 deletions

View File

@@ -126,7 +126,10 @@ def run_info(args: argparse.Namespace) -> int:
if service.tcp_port is not None:
# Raw-TCP reach is internal-only (public TCP is rejected at load, see
# SystemdDeployment._validate_reach), so there's no "public" state here.
print(f" {BOLD}tcp{RESET}: {name}.<gateway.domain>:{service.tcp_port} (internal)")
print(
f" {BOLD}tcp{RESET}: "
f"{name}.<gateway.domain>:{service.tcp_port} (internal)"
)
if service.manage and service.manage.systemd:
sd = service.manage.systemd
print(f" {BOLD}systemd{RESET}: enabled={sd.enable}, restart={sd.restart.value}")