Untitled
unknown
plain_text
10 months ago
179 B
4
Indexable
def get_all_alert_logs(self):
results = self.db.execute("""
SELECT * FROM alert_log
""", fetch_all=True)
return [dict(row) for row in results]Editor is loading...
Leave a Comment