From 5e027014d140fa59de901673525e955c9b6b14dd Mon Sep 17 00:00:00 2001 From: Tpt Date: Thu, 7 Jan 2021 22:08:41 +0100 Subject: [PATCH] Fixes a release build error on python bindings --- python/src/sled_store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/sled_store.rs b/python/src/sled_store.rs index 76ca1c89..9c24b406 100644 --- a/python/src/sled_store.rs +++ b/python/src/sled_store.rs @@ -453,7 +453,7 @@ impl PyIterProtocol for PySledStore { } } -#[pyclass(module = "oxigraph")] +#[pyclass(unsendable, module = "oxigraph")] pub struct QuadIter { inner: SledQuadIter, }