From 7d9ef2d418273f379555bfd644627251a54658c9 Mon Sep 17 00:00:00 2001 From: Jedd Morgan <45512892+JR-Morgan@users.noreply.github.com> Date: Tue, 5 Nov 2024 17:56:34 +0000 Subject: [PATCH] hotfix for previous PR mistakenly calling the get_project_workspace_id function with incorrect args (#210) * workspace tracking + black * works * fixed issue --- bpy_speckle/operators/streams.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bpy_speckle/operators/streams.py b/bpy_speckle/operators/streams.py index 77c564b..4e0212e 100644 --- a/bpy_speckle/operators/streams.py +++ b/bpy_speckle/operators/streams.py @@ -388,7 +388,7 @@ def send(self, context: Context) -> None: "branches": len(stream.branches), # "collaborators": 0, #TODO: "isMain": branch.name == "main", - "workspace_id": get_project_workspace_id(stream.id), + "workspace_id": get_project_workspace_id(client, stream.id), }, )