Skip to content

Commit

Permalink
missed a variable removal in refactor.
Browse files Browse the repository at this point in the history
  • Loading branch information
mjohns-databricks committed Jan 30, 2024
1 parent 6cb16ae commit e843d39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/api/vector-format-readers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ Here is an example UDFs to list layers, supporting both zipped and non-zipped.
z_path = zip_path
if zip_path and not zip_path.startswith("zip:"):
z_path = f"zip://{zip_path}"
return fiona.listlayers(in_path, vfs=z_path, driver=driver, layer=layer)
return fiona.listlayers(in_path, vfs=z_path, driver=driver)
We can call the UDF, e.g.

Expand Down

0 comments on commit e843d39

Please sign in to comment.