Skip to content

Commit 9643fff

Browse files
authored
Fix a typo in an error message (#2004)
1 parent d74027e commit 9643fff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tiledb/enumeration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def __init__(
4040
"""
4141
if values is None or len(values) == 0:
4242
if dtype is None:
43-
raise ValueError("dtype must be provied for empty enumeration")
43+
raise ValueError("dtype must be provided for empty enumeration")
4444
super().__init__(ctx, name, np.dtype(dtype), ordered)
4545

4646
values = np.array(values)

0 commit comments

Comments
 (0)