Fixint lint issue

This commit is contained in:
Silversthorn 2024-03-10 12:59:04 +00:00
parent 1e2ec6b643
commit ae7d0991e4

View File

@ -372,7 +372,8 @@ class MigrationManager(object):
Create migrator Create migrator
""" """
migrator = Migrator(self.database) migrator = Migrator(self.database)
# Removing the up_one to prevent running all migration each time we got a new one. it's handled by migration.up # 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: #for name in self.done:
# self.up_one(name, migrator, True) # self.up_one(name, migrator, True)
return migrator return migrator