diff --git a/database/database.py b/database/database.py index adb15e1..d49ab49 100644 --- a/database/database.py +++ b/database/database.py @@ -138,10 +138,6 @@ def get_played_games(self, user_id): return int(result["games_played"]) - def get_all_users(self): - self.cursor.execute("SELECT rowid, * FROM users;") - return self.cursor.fetchall() - @Cache(timeout=60) def get_admins(self): self.cursor.execute("SELECT user_id from admins;")