mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-01-14 21:38:27 -05:00
remove prints
This commit is contained in:
committed by
Mary Hipp Rogers
parent
7882e9beae
commit
3eee1ba113
@@ -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
|
||||
)
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user