Skip to content

Commit

Permalink
Update cognite/client/_api/data_modeling/instances.py
Browse files Browse the repository at this point in the history
  • Loading branch information
doctrino authored Feb 28, 2025
1 parent 94cde08 commit dc76d44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cognite/client/_api/data_modeling/instances.py
Original file line number Diff line number Diff line change
Expand Up @@ -1175,7 +1175,7 @@ def search(
body: dict[str, Any] = {
"view": view.dump(camel_case=True),
"instanceType": instance_type_str,
"limit": self._SEARCH_LIMIT if is_unlimited(limit) or limit is None else limit,
"limit": self._SEARCH_LIMIT if is_unlimited(limit) else limit,
}
if query:
body["query"] = query
Expand Down

0 comments on commit dc76d44

Please sign in to comment.