We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc029bc commit d6fd022Copy full SHA for d6fd022
1 file changed
python/python/lance_graph/__init__.py
@@ -15,7 +15,10 @@ def _load_bindings() -> ModuleType:
15
try:
16
from . import _internal as bindings # type: ignore[attr-defined]
17
except ImportError:
18
- bindings = _load_dev_build()
+ try:
19
+ import _internal as bindings # type: ignore[import-not-found]
20
+ except ImportError:
21
+ bindings = _load_dev_build()
22
return bindings
23
24
0 commit comments