(api_client, workspace_id, widget_type, group_id, relative_index)
| 60 | |
| 61 | |
| 62 | def _widget_add(api_client, workspace_id, widget_type, group_id, relative_index): |
| 63 | return api_client.command( |
| 64 | "project.workspace.addWidget", |
| 65 | { |
| 66 | "workspaceId": workspace_id, |
| 67 | "widgetType": widget_type, |
| 68 | "groupId": group_id, |
| 69 | "relativeIndex": relative_index, |
| 70 | }, |
| 71 | ) |
| 72 | |
| 73 | |
| 74 | def _widget_remove(api_client, workspace_id, widget_type, group_id, relative_index): |
no test coverage detected