We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f960208 commit dd2f0d2Copy full SHA for dd2f0d2
pandas/core/generic.py
@@ -7524,7 +7524,7 @@ def interpolate(
7524
limit: int | None = None,
7525
inplace: bool_t = False,
7526
limit_direction: Literal["forward", "backward", "both"] | None = None,
7527
- limit_area: str | None = None,
+ limit_area: Literal["inside", "outside"] | None = None,
7528
downcast: str | None = None,
7529
**kwargs,
7530
) -> Self | None:
@@ -8346,7 +8346,7 @@ def asfreq(
8346
self,
8347
freq: Frequency,
8348
method: FillnaOptions | None = None,
8349
- how: str | None = None,
+ how: Literal["start", "end"] | None = None,
8350
normalize: bool_t = False,
8351
fill_value: Hashable = None,
8352
) -> Self:
0 commit comments