Skip to content

Commit b1f62f2

Browse files
committed
feat(gooddata-sdk): [AUTO] Add AiWorkspaceLimit, AiWorkspaceCount and ENABLE_PARTIAL_DATA_RESULTS
1 parent 38b0798 commit b1f62f2

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

packages/gooddata-sdk/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ test = [
7676
]
7777

7878
[tool.ty.analysis]
79-
allowed-unresolved-imports = ["gooddata_api_client.**"]
79+
allowed-unresolved-imports = ["gooddata_api_client.**", "pyarrow", "pyarrow.**"]
8080

8181
[tool.hatch.build.targets.wheel]
8282
packages = ["src/gooddata_sdk"]

packages/gooddata-sdk/src/gooddata_sdk/compute/model/filter.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ def __init__(
326326
self._from_shift = from_shift
327327
self._to_shift = to_shift
328328
self._bounded_filter = bounded_filter
329-
self._empty_value_handling = empty_value_handling
329+
self._empty_value_handling: EmptyValueHandling | None = empty_value_handling
330330

331331
@property
332332
def dataset(self) -> ObjId:
@@ -435,7 +435,7 @@ def __init__(
435435

436436
self._dataset = dataset
437437
self._granularity = granularity
438-
self._empty_value_handling = empty_value_handling
438+
self._empty_value_handling: EmptyValueHandling | None = empty_value_handling
439439

440440
@property
441441
def dataset(self) -> ObjId:
@@ -490,7 +490,7 @@ def __init__(
490490
self._dataset = dataset
491491
self._from_date = from_date
492492
self._to_date = to_date
493-
self._empty_value_handling = empty_value_handling
493+
self._empty_value_handling: EmptyValueHandling | None = empty_value_handling
494494

495495
@property
496496
def dataset(self) -> ObjId:

0 commit comments

Comments
 (0)