mirror of
https://github.com/PhoenixTwoFive/karaoqueue.git
synced 2025-05-18 18:41:48 +02:00
6 lines
126 B
Python
6 lines
126 B
Python
def dict_from_rows(rows):
|
|
outlist = []
|
|
for row in rows:
|
|
outlist.append(dict(row._mapping))
|
|
return outlist
|