diff --git a/smoosense-py/smoosense/utils/duckdb_connections.py b/smoosense-py/smoosense/utils/duckdb_connections.py index e0665e8..74fbed0 100644 --- a/smoosense-py/smoosense/utils/duckdb_connections.py +++ b/smoosense-py/smoosense/utils/duckdb_connections.py @@ -22,7 +22,7 @@ def maker() -> DuckDBPyConnection: # Now install and load the extension con.execute("INSTALL httpfs") con.execute("LOAD httpfs") - con.execute("INSTALL lance FROM community") + con.execute("INSTALL lance") con.execute("LOAD lance") return con @@ -58,7 +58,7 @@ def maker() -> DuckDBPyConnection: # Now install and load the extension con.execute("INSTALL httpfs") con.execute("LOAD httpfs") - con.execute("INSTALL lance FROM community") + con.execute("INSTALL lance") con.execute("LOAD lance") # Configure DuckDB S3 settings con.execute(f"SET s3_region='{region}'")