Remove print statements

This commit is contained in:
amcmanu3 2024-03-08 22:45:08 -05:00
parent 548a439f14
commit 1a8d351fbd
2 changed files with 0 additions and 3 deletions

View File

@ -119,7 +119,6 @@ class HelperUsers:
@staticmethod
def get_user_total():
count = Users.select().where(Users.username != "system").count()
print(count)
return count
@staticmethod

View File

@ -14,7 +14,6 @@ def migrate(migrator: Migrator, database, **kwargs):
"""
Write your migrations here.
"""
print("pee pee")
db = database
migrator.add_columns("backups", backup_id=peewee.UUIDField(default=uuid.uuid4))
@ -70,7 +69,6 @@ def migrate(migrator: Migrator, database, **kwargs):
# Copy data from the existing backups table to the new one
for backup in Backups.select():
print(backup)
# Fetch the related server entry from the Servers table
server = Servers.get(Servers.server_id == backup.server_id)