@@ -68,7 +68,7 @@ class GeoDataFrame(GeoPandasBase, pd.DataFrame): # type: ignore[misc]
68
68
geometry : _GeomCol | None = None ,
69
69
crs : _ConvertibleToCRS | None = None ,
70
70
) -> None : ...
71
- def __setattr__ (self , attr : str , val : Any ) -> None : ... # Can set arbitrary objects
71
+ def __setattr__ (self , attr : str , val : Any ) -> None : ... # type: ignore[misc] # Can set arbitrary objects
72
72
@property
73
73
def geometry (self ) -> GeoSeries : ...
74
74
@geometry .setter
@@ -283,7 +283,7 @@ class GeoDataFrame(GeoPandasBase, pd.DataFrame): # type: ignore[misc]
283
283
def estimate_utm_crs (self , datum_name : str = "WGS 84" ) -> CRS : ...
284
284
# def __getitem__(self, key): ...
285
285
# def __setitem__(self, key, value) -> None: ...
286
- def copy (self , deep : bool = True ) -> Self : ...
286
+ def copy (self , deep : bool = True ) -> Self : ... # type: ignore[misc]
287
287
# def merge(self, *args, **kwargs) -> GeoDataFrame | pd.DataFrame: ...
288
288
def apply ( # type: ignore[override]
289
289
self ,
@@ -298,7 +298,7 @@ class GeoDataFrame(GeoPandasBase, pd.DataFrame): # type: ignore[misc]
298
298
engine_kwargs : dict [str , bool ] | None = None ,
299
299
** kwargs ,
300
300
) -> pd .DataFrame | pd .Series [Incomplete ]: ...
301
- def __finalize__ (self , other , method : str | None = None , ** kwargs ) -> Self : ...
301
+ def __finalize__ (self , other , method : str | None = None , ** kwargs ) -> Self : ... # type: ignore[misc]
302
302
def dissolve (
303
303
self ,
304
304
by : GroupByObject | None = None ,
0 commit comments