remove loose print from db

This commit is contained in:
Lera Elvoé 2025-06-29 21:10:47 +03:00
parent b1dba80090
commit 21b62a12f9
Signed by: yagich
SSH Key Fingerprint: SHA256:6xjGb6uA7lAVcULa7byPEN//rQ0wPoG+UzYVMfZnbvc

View File

@ -147,7 +147,6 @@ class DB:
def first(self): def first(self):
sql, params = self.build_select() sql, params = self.build_select()
print(sql, params)
return db.fetch_one(f"{sql} LIMIT 1", *params) return db.fetch_one(f"{sql} LIMIT 1", *params)