chore: linting

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2026-02-01 21:17:24 -08:00
parent e7c17c327c
commit 8fb5a7fb8f
10 changed files with 61 additions and 55 deletions

View file

@ -546,7 +546,9 @@ class PublicChatSnapshot(BaseModel, TimestampMixin):
# Constraints
__table_args__ = (
# Prevent duplicate snapshots of the same content for the same thread
UniqueConstraint("thread_id", "content_hash", name="uq_snapshot_thread_content_hash"),
UniqueConstraint(
"thread_id", "content_hash", name="uq_snapshot_thread_content_hash"
),
)