Skip to content

Commit

Permalink
Fix persistent index creation signature (#229)
Browse files Browse the repository at this point in the history
  • Loading branch information
aquamatthias authored Nov 27, 2022
1 parent 745ad54 commit 86411ef
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 @@ -1248,7 +1248,7 @@ def add_persistent_index(
sparse: Optional[bool] = None,
name: Optional[str] = None,
in_background: Optional[bool] = None,
storedValues: Sequence[str] = [],
storedValues: Optional[Sequence[str]] = None,
cacheEnabled: Optional[bool] = None,
) -> Result[Json]:
"""Create a new persistent index.
Expand Down

0 comments on commit 86411ef

Please sign in to comment.