From 53e6a87ad7f0473ff328b0728e6eaa11054cb572 Mon Sep 17 00:00:00 2001 From: Agis Kounelis Date: Tue, 23 Apr 2024 13:40:11 +0300 Subject: [PATCH] Fix build error --- tiledb/libtiledb.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tiledb/libtiledb.pyx b/tiledb/libtiledb.pyx index c7727d902a..edc092d589 100644 --- a/tiledb/libtiledb.pyx +++ b/tiledb/libtiledb.pyx @@ -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"