File tree Expand file tree Collapse file tree
src/gooddata_sdk/compute/model Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ]
8282packages = [" src/gooddata_sdk" ]
Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments