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 791777f commit 46b3987Copy full SHA for 46b3987
pandas-stubs/core/frame.pyi
@@ -900,15 +900,15 @@ class DataFrame(NDFrame, OpsMixin):
900
) -> DataFrame | None: ...
901
def drop_duplicates(
902
self,
903
- subset=...,
+ subset: Hashable | Iterable[Hashable] | None = ...,
904
*,
905
keep: NaPosition | _bool = ...,
906
inplace: _bool = ...,
907
ignore_index: _bool = ...,
908
) -> DataFrame: ...
909
def duplicated(
910
911
- subset: Hashable | Sequence[Hashable] | None = ...,
912
913
) -> Series: ...
914
@overload
0 commit comments