pyiceberg add an extra .dot in the path, is there a way to turn it off.
from pyiceberg.catalog.sql import SqlCatalog
catalog = SqlCatalog(
"default",
**{
"uri" : "sqlite:////tmp/pyiceberg.db",
"legacy-current-snapshot-id": True ,
"warehouse" : "/lakehouse/default/Files"
},
)
schema = "simple"
catalog.create_namespace_if_not_exists(schema)
catalog.list_tables(schema)