Update autogpt_platform/backend/backend/data/workspace.py

Co-authored-by: Reinier van der Leer <pwuts@agpt.co>
This commit is contained in:
Nicholas Tindle
2026-01-28 15:35:41 -06:00
committed by GitHub
parent eb6619fd0f
commit 9d09030e72

View File

@@ -183,7 +183,7 @@ async def list_workspace_files(
Returns:
List of UserWorkspaceFile instances
"""
where_clause: dict = {"workspaceId": workspace_id}
where_clause: UserWorkspaceFileWhereInput = {"workspaceId": workspace_id}
if not include_deleted:
where_clause["isDeleted"] = False