From 9cbe699201eec20e625d52ba0dcc08c6d7731b8a Mon Sep 17 00:00:00 2001 From: Dan Homola Date: Wed, 28 May 2025 13:02:41 +0200 Subject: [PATCH] fix: add missing Execution export The Execution class needs to be exported by gooddata_sdk, so that users can hold a reference to it in a type-safe way. JIRA: CQ-1124 risk: low --- gooddata-sdk/gooddata_sdk/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gooddata-sdk/gooddata_sdk/__init__.py b/gooddata-sdk/gooddata_sdk/__init__.py index 3b2a04785..12092857f 100644 --- a/gooddata-sdk/gooddata_sdk/__init__.py +++ b/gooddata-sdk/gooddata_sdk/__init__.py @@ -231,6 +231,7 @@ from gooddata_sdk.compute.model.base import ExecModelEntity, ObjId from gooddata_sdk.compute.model.execution import ( BareExecutionResponse, + Execution, ExecutionDefinition, ExecutionResponse, ExecutionResult,