From cc37bf212543339f72b8ba71d29b8a1a0bbd0c02 Mon Sep 17 00:00:00 2001 From: Misha Tomilov Date: Mon, 3 Feb 2025 19:18:46 +0100 Subject: [PATCH] Update Mention model --- h/models/mention.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/h/models/mention.py b/h/models/mention.py index 3e5a3f3aab5..48298b12df9 100644 --- a/h/models/mention.py +++ b/h/models/mention.py @@ -6,7 +6,7 @@ from h.models import helpers -class Mention(Base, Timestamps): # pragma: nocover +class Mention(Base, Timestamps): __tablename__ = "mention" id: Mapped[int] = mapped_column(sa.Integer, autoincrement=True, primary_key=True)