We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
importlib.util
2 parents 2cbb98d + ecd0c87 commit 50c802bCopy full SHA for 50c802b
adbc_driver_duckdb/__init__.py
@@ -19,7 +19,7 @@
19
20
import enum
21
import functools
22
-import importlib
+import importlib.util
23
import typing
24
25
import adbc_driver_manager
@@ -46,5 +46,4 @@ def driver_path() -> str:
46
if duckdb_module_spec is None:
47
msg = "Could not find duckdb shared library. Did you pip install duckdb?"
48
raise ImportError(msg)
49
- print(f"Found duckdb shared library at {duckdb_module_spec.origin}")
50
return duckdb_module_spec.origin
0 commit comments