Trying to appease lint one more time

This commit is contained in:
Silversthorn 2024-03-10 13:15:17 +00:00
parent ae7d0991e4
commit 36de32e5b1

View File

@ -372,9 +372,10 @@ class MigrationManager(object):
Create migrator Create migrator
""" """
migrator = Migrator(self.database) migrator = Migrator(self.database)
# Removing the up_one to prevent running all migrations # Removing the up_one to prevent running all
# each time we got a new one. It's handled by migration.up() function. # migrations each time we got a new one.
#for name in self.done: # It's handled by migration.up() function.
# for name in self.done:
# self.up_one(name, migrator, True) # self.up_one(name, migrator, True)
return migrator return migrator