changed game layout away from using image

This commit is contained in:
2023-12-10 21:18:41 +01:00
parent cdf6a810ec
commit 4acb99cc84
10 changed files with 57 additions and 53 deletions

View File

@ -15,6 +15,6 @@ class Database:
self.__cursor.execute(query)
return self.__cursor.fetchall()
def fetchall(self, query:str):
def fetchone(self, query:str):
self.__cursor.execute(query)
return self.__cursor.fetchone()