Spaces:
Running
Running
Update app.py
Browse files- app/app.py +1 -1
app/app.py
CHANGED
@@ -30,7 +30,7 @@ from utils import *
|
|
30 |
|
31 |
## Create the table from remote parquet only if it doesn't already exist on disk
|
32 |
|
33 |
-
con = ibis.duckdb.connect(extensions=["spatial"])
|
34 |
current_tables = con.list_tables()
|
35 |
if "mydata" not in set(current_tables):
|
36 |
tbl = con.read_parquet(ca_parquet)
|
|
|
30 |
|
31 |
## Create the table from remote parquet only if it doesn't already exist on disk
|
32 |
|
33 |
+
con = ibis.duckdb.connect("duck.db", extensions=["spatial"])
|
34 |
current_tables = con.list_tables()
|
35 |
if "mydata" not in set(current_tables):
|
36 |
tbl = con.read_parquet(ca_parquet)
|