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.
1 parent a5dd51e commit aaac02cCopy full SHA for aaac02c
dask_geopandas/io/parquet.py
@@ -42,18 +42,6 @@ def _get_partition_bounds_parquet(part, fs):
42
return _get_partition_bounds(pq_metadata.metadata)
43
44
45
-def _convert_to_list(column) -> list | None:
46
- if column is None or isinstance(column, list):
47
- pass
48
- elif isinstance(column, tuple):
49
- column = list(column)
50
- elif hasattr(column, "dtype"):
51
- column = column.tolist()
52
- else:
53
- column = [column]
54
- return column
55
-
56
57
class GeoArrowEngine(GeoDatasetEngine, DaskArrowDatasetEngine):
58
"""
59
Engine for reading geospatial Parquet datasets. Subclasses dask's
0 commit comments