Skip to content

Commit

Permalink
Fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
kounelisagis committed Apr 23, 2024
1 parent 5cdc93b commit 53e6a87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiledb/libtiledb.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -3560,7 +3560,7 @@ def move(old_uri, new_uri, ctx=None):
check_error(ctx, rc)
return

cdef int walk_callback(const char* path_ptr, tiledb_object_t obj, void* pyfunc):
cdef int walk_callback(const char* path_ptr, tiledb_object_t obj, void* pyfunc) noexcept:
objtype = None
if obj == TILEDB_GROUP:
objtype = "group"
Expand Down

0 comments on commit 53e6a87

Please sign in to comment.