Skip to content

Commit

Permalink
Fix a typo in an error message (#2004)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl committed Jul 10, 2024
1 parent d74027e commit 9643fff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiledb/enumeration.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def __init__(
"""
if values is None or len(values) == 0:
if dtype is None:
raise ValueError("dtype must be provied for empty enumeration")
raise ValueError("dtype must be provided for empty enumeration")
super().__init__(ctx, name, np.dtype(dtype), ordered)

values = np.array(values)
Expand Down

0 comments on commit 9643fff

Please sign in to comment.