We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0d267c commit ae6e2d7Copy full SHA for ae6e2d7
1 file changed
caterva2/services/server.py
@@ -31,7 +31,7 @@
31
# Requirements
32
import blosc2
33
34
-if blosc2._NUMBA_:
+if blosc2._HAS_NUMBA:
35
import numba
36
import dotenv
37
import fastapi
@@ -730,7 +730,7 @@ def make_expr(
730
"np": np,
731
"blosc2": blosc2,
732
}
733
- if blosc2._NUMBA_:
+ if blosc2._HAS_NUMBA:
734
SAFE_GLOBALS["numba"] = numba
735
736
# Register the source so inspect can find it when saving later on
0 commit comments