From 9d09030e72ca711a1b9202399cc0264cdd4142f0 Mon Sep 17 00:00:00 2001 From: Nicholas Tindle Date: Wed, 28 Jan 2026 15:35:41 -0600 Subject: [PATCH] Update autogpt_platform/backend/backend/data/workspace.py Co-authored-by: Reinier van der Leer --- autogpt_platform/backend/backend/data/workspace.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogpt_platform/backend/backend/data/workspace.py b/autogpt_platform/backend/backend/data/workspace.py index 1c439e2786..67b2aa2986 100644 --- a/autogpt_platform/backend/backend/data/workspace.py +++ b/autogpt_platform/backend/backend/data/workspace.py @@ -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