From fe7b6485fd1c8fb8ae17d107b9de82e6e9ba107f Mon Sep 17 00:00:00 2001 From: Jacob Magar Date: Sun, 15 Mar 2026 23:40:27 -0400 Subject: [PATCH] chore: ruff format types.py (pre-existing unformatted file) --- unraid_mcp/core/types.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/unraid_mcp/core/types.py b/unraid_mcp/core/types.py index dc6ad0d..c480dc3 100644 --- a/unraid_mcp/core/types.py +++ b/unraid_mcp/core/types.py @@ -22,8 +22,6 @@ class SubscriptionData: def __post_init__(self) -> None: if self.last_updated.tzinfo is None: - raise ValueError( - "last_updated must be timezone-aware; use datetime.now(UTC)" - ) + raise ValueError("last_updated must be timezone-aware; use datetime.now(UTC)") if not self.subscription_type.strip(): raise ValueError("subscription_type must be a non-empty string")