Skip to content

Commit

Permalink
Fix typo in example code spaces.delete (#1545)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrfla-cognite authored Dec 20, 2023
1 parent cae17b9 commit 75a7bf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cognite/client/_api/data_modeling/spaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def delete(self, spaces: str | SequenceNotStr[str]) -> list[str]:
>>> from cognite.client import CogniteClient
>>> c = CogniteClient()
>>> c.data_modeling.spaces.delete(space=["mySpace", "myOtherSpace"])
>>> c.data_modeling.spaces.delete(spaces=["mySpace", "myOtherSpace"])
"""
deleted_spaces = cast(
list,
Expand Down

0 comments on commit 75a7bf8

Please sign in to comment.