Skip to content

Commit 3c8c233

Browse files
authored
[geopandas] Add a # type: ignore (#14200)
Should help with #14194
1 parent 252acdf commit 3c8c233

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stubs/geopandas/geopandas/geoseries.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ class GeoSeries(GeoPandasBase, pd.Series[BaseGeometry]): # type: ignore[type-va
160160
# def fillna(self, value=None, method: FillnaOptions | None = None, inplace: bool = False, **kwargs): ...
161161
def __contains__(self, other: object) -> bool: ...
162162
@doc(plot_series)
163-
def plot(self, *args, **kwargs): ... # signature of `plot_series` copied in `@doc`
163+
def plot(self, *args, **kwargs): ... # type: ignore[override] # signature of `plot_series` copied in `@doc`
164164
@doc(_explore_geoseries) # pyright: ignore[reportUnknownArgumentType]
165165
def explore(self, *args, **kwargs): ... # signature of `_explore_geoseries` copied in `@doc`
166166
def explode(self, ignore_index: bool = False, index_parts: bool = False) -> GeoSeries: ...

0 commit comments

Comments
 (0)