remove prints

This commit is contained in:
Mary Hipp
2024-10-08 09:26:49 -04:00
committed by Mary Hipp Rogers
parent 7882e9beae
commit 3eee1ba113
2 changed files with 0 additions and 2 deletions

View File

@@ -92,7 +92,6 @@ async def list_workflows(
query: Optional[str] = Query(default=None, description="The text to query by (matches name and description)"),
) -> PaginatedResults[WorkflowRecordListItemDTO]:
"""Gets a page of workflows"""
print(category)
return ApiDependencies.invoker.services.workflow_records.get_many(
order_by=order_by, direction=direction, page=page, per_page=per_page, query=query, category=category
)

View File

@@ -189,7 +189,6 @@ class SqliteWorkflowRecordsStorage(WorkflowRecordsStorageBase):
else:
pages = 1 # If no pagination, there is only one page
print(workflows)
return PaginatedResults(
items=workflows,
page=page,