Skip to content

Commit 795fbec

Browse files
authored
TYP: ignore typing error (#73)
1 parent 62e595e commit 795fbec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xvec/accessor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -766,7 +766,7 @@ def to_geopandas(self) -> GeoDataFrame | pd.DataFrame:
766766
gdf = gdf.T
767767
return gdf.reset_index().set_geometry( # type: ignore
768768
self._geom_indexes[0],
769-
crs=self._obj.xindexes[self._geom_indexes[0]].crs,
769+
crs=self._obj.xindexes[self._geom_indexes[0]].crs, # type: ignore
770770
)
771771
warnings.warn(
772772
"No geometry to return, falling back to DataArray.to_pandas().",

0 commit comments

Comments
 (0)