Skip to content

Commit 5ee7077

Browse files
committed
fix: type ExecutionContext attribute filter values properly
The attribute filter values can contain None values so reflect that in the typings appropriately. JIRA: CQ-743 risk: low
1 parent d2709f0 commit 5ee7077

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)