From 0844f9c7960adadfc03a6c9571aec2b4a4b9b997 Mon Sep 17 00:00:00 2001 From: Andrew Gorton Date: Wed, 10 May 2023 00:10:30 -0400 Subject: [PATCH] Add newline --- puterbot/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/puterbot/models.py b/puterbot/models.py index 2df73ba61..0f172c1a2 100644 --- a/puterbot/models.py +++ b/puterbot/models.py @@ -223,6 +223,7 @@ class WindowEvent(Base): width = sa.Column(sa.Integer) height = sa.Column(sa.Integer) + class PerformanceStat(Base): __tablename__ = "performance_stat" id = sa.Column(sa.Integer, primary_key=True)