mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
server: remove print() statements
This commit is contained in:
@@ -136,9 +136,7 @@ class TranscriptController:
|
|||||||
query = transcripts.select()
|
query = transcripts.select()
|
||||||
if user_id is not None:
|
if user_id is not None:
|
||||||
query = query.where(transcripts.c.user_id == user_id)
|
query = query.where(transcripts.c.user_id == user_id)
|
||||||
print(query)
|
|
||||||
results = await database.fetch_all(query)
|
results = await database.fetch_all(query)
|
||||||
print(results)
|
|
||||||
return results
|
return results
|
||||||
|
|
||||||
async def get_by_id(
|
async def get_by_id(
|
||||||
|
|||||||
Reference in New Issue
Block a user