Skip to content

Commit 666a50f

Browse files
committed
refactor(db): remove unused method
1 parent 6861229 commit 666a50f

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

database/database.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,10 +138,6 @@ def get_played_games(self, user_id):
138138

139139
return int(result["games_played"])
140140

141-
def get_all_users(self):
142-
self.cursor.execute("SELECT rowid, * FROM users;")
143-
return self.cursor.fetchall()
144-
145141
@Cache(timeout=60)
146142
def get_admins(self):
147143
self.cursor.execute("SELECT user_id from admins;")

0 commit comments

Comments
 (0)