Skip to content

Commit 5149148

Browse files
authored
Merge pull request #784 from no23reason/dho/cq-743-nulls
fix: type ExecutionContext attribute filter values properly
2 parents d2709f0 + 5ee7077 commit 5149148

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

gooddata-flight-server/gooddata_flight_server/flexfun/flex_fun_execution_context.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class ExecutionContextPositiveAttributeFilter:
8383
Identifier of the label used.
8484
"""
8585

86-
values: list[str]
86+
values: list[Optional[str]]
8787
"""
8888
Values of the filter.
8989
"""
@@ -100,7 +100,7 @@ class ExecutionContextNegativeAttributeFilter:
100100
Identifier of the label used.
101101
"""
102102

103-
values: list[str]
103+
values: list[Optional[str]]
104104
"""
105105
Values of the filter.
106106
"""

0 commit comments

Comments
 (0)