Skip to content

Commit

Permalink
Make in filter work with node IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
MortGron committed Oct 22, 2024
1 parent fd12426 commit 446fca0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cognite/client/data_classes/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class ParameterValue:


FilterValue: TypeAlias = RawValue | PropertyReferenceValue | ParameterValue
FilterValueList: TypeAlias = Sequence[RawValue] | PropertyReferenceValue | ParameterValue | Sequence[InstanceId]
FilterValueList: TypeAlias = Sequence[RawValue | InstanceId] | PropertyReferenceValue | ParameterValue


def _dump_filter_value(value: FilterValueList | FilterValue) -> Any:
Expand Down

0 comments on commit 446fca0

Please sign in to comment.