chore: ruff format types.py (pre-existing unformatted file)

This commit is contained in:
Jacob Magar
2026-03-15 23:40:27 -04:00
parent d7545869e2
commit fe7b6485fd

View File

@@ -22,8 +22,6 @@ class SubscriptionData:
def __post_init__(self) -> None: def __post_init__(self) -> None:
if self.last_updated.tzinfo is None: if self.last_updated.tzinfo is None:
raise ValueError( raise ValueError("last_updated must be timezone-aware; use datetime.now(UTC)")
"last_updated must be timezone-aware; use datetime.now(UTC)"
)
if not self.subscription_type.strip(): if not self.subscription_type.strip():
raise ValueError("subscription_type must be a non-empty string") raise ValueError("subscription_type must be a non-empty string")