Skip to content

Commit

Permalink
Merge pull request #784 from no23reason/dho/cq-743-nulls
Browse files Browse the repository at this point in the history
fix: type ExecutionContext attribute filter values properly
  • Loading branch information
no23reason authored Sep 4, 2024
2 parents d2709f0 + 5ee7077 commit 5149148
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class ExecutionContextPositiveAttributeFilter:
Identifier of the label used.
"""

values: list[str]
values: list[Optional[str]]
"""
Values of the filter.
"""
Expand All @@ -100,7 +100,7 @@ class ExecutionContextNegativeAttributeFilter:
Identifier of the label used.
"""

values: list[str]
values: list[Optional[str]]
"""
Values of the filter.
"""
Expand Down

0 comments on commit 5149148

Please sign in to comment.