From d01489b1fa17581a699864a7b798c3505d074c1b Mon Sep 17 00:00:00 2001 From: Thomas Peetz Date: Mon, 27 Jan 2025 15:21:51 +0100 Subject: [PATCH] reformat python file --- python/kontor-schema/kontor_schema/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/kontor-schema/kontor_schema/base.py b/python/kontor-schema/kontor_schema/base.py index f1cac9f..dd4dbad 100644 --- a/python/kontor-schema/kontor_schema/base.py +++ b/python/kontor-schema/kontor_schema/base.py @@ -20,6 +20,7 @@ class BaseMixin: # version = Column(Integer) version: Mapped[int] = mapped_column(default=0) + class BaseVideoMixin: cloud_link = Column(String(255)) file_name = Column(String(255)) @@ -28,4 +29,3 @@ class BaseVideoMixin: title = Column(String(255)) url = Column(String(255), unique=True) should_download = Column(BIT(1)) -