From dbe5581e5a6b477a75b297c344f57da445524624 Mon Sep 17 00:00:00 2001 From: Zedifus Date: Sun, 10 Mar 2024 22:52:23 +0000 Subject: [PATCH] Appease Black --- app/classes/shared/migration.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/classes/shared/migration.py b/app/classes/shared/migration.py index 8f081982..6a93802b 100644 --- a/app/classes/shared/migration.py +++ b/app/classes/shared/migration.py @@ -372,8 +372,8 @@ class MigrationManager(object): Create migrator """ migrator = Migrator(self.database) - # Removing the up_one to prevent running all - # migrations each time we got a new one. + # Removing the up_one to prevent running all + # migrations each time we got a new one. # It's handled by migration.up() function. # for name in self.done: # self.up_one(name, migrator, True)