Skip to content

Commit

Permalink
Update arango/collection.py
Browse files Browse the repository at this point in the history
Co-authored-by: Anthony Mahanna <[email protected]>
  • Loading branch information
apetenchea and aMahanna authored May 29, 2024
1 parent a03ec2d commit b6e74ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arango/collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -1387,7 +1387,7 @@ def add_skiplist_index(
:rtype: dict
:raise arango.exceptions.IndexCreateError: If create fails.
"""
m = "add_skiplist_index is deprecated. Using add_index with {'type': 'persistent'} instead." # noqa: E501
m = "add_skiplist_index is deprecated. Using add_index with {'type': 'skiplist'} instead." # noqa: E501
warn(m, DeprecationWarning, stacklevel=2)

data: Json = {"type": "skiplist", "fields": fields}
Expand Down

0 comments on commit b6e74ca

Please sign in to comment.