remove useless print

This commit is contained in:
starnakin 2023-06-04 12:32:28 +02:00
parent d37f9796e6
commit 00723801cc

View File

@ -44,7 +44,6 @@ class Database:
command += f"{key} {value}, "
command = command[:-2]
command += ")"
print (command)
self.cursor.execute(command)
def create_user_table(self):