Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/gooddata-sdk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ test = [
]

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

[tool.hatch.build.targets.wheel]
packages = ["src/gooddata_sdk"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def __init__(
self._from_shift = from_shift
self._to_shift = to_shift
self._bounded_filter = bounded_filter
self._empty_value_handling = empty_value_handling
self._empty_value_handling: EmptyValueHandling | None = empty_value_handling

@property
def dataset(self) -> ObjId:
Expand Down Expand Up @@ -435,7 +435,7 @@ def __init__(

self._dataset = dataset
self._granularity = granularity
self._empty_value_handling = empty_value_handling
self._empty_value_handling: EmptyValueHandling | None = empty_value_handling

@property
def dataset(self) -> ObjId:
Expand Down Expand Up @@ -490,7 +490,7 @@ def __init__(
self._dataset = dataset
self._from_date = from_date
self._to_date = to_date
self._empty_value_handling = empty_value_handling
self._empty_value_handling: EmptyValueHandling | None = empty_value_handling

@property
def dataset(self) -> ObjId:
Expand Down
Loading