-
-
Notifications
You must be signed in to change notification settings - Fork 18.7k
Closed
Labels
Typingtype annotations, mypy/pyright type checkingtype annotations, mypy/pyright type checkinggood first issue
Description
Lines 7449 to 7458 in 094f630
@final | |
def clip( | |
self: FrameOrSeries, | |
lower=None, | |
upper=None, | |
axis=None, | |
inplace: bool_t = False, | |
*args, | |
**kwargs, | |
) -> FrameOrSeries: |
Return type should be Optional[FrameOrSeriesUnion]
It could also do with being overloaded according to the value of inplace
- see set_axis
and DataFrame.reset_index
for examples
Metadata
Metadata
Assignees
Labels
Typingtype annotations, mypy/pyright type checkingtype annotations, mypy/pyright type checkinggood first issue