Skip to content

Commit 3860884

Browse files
authored
TYP: Fix pad_or_backfill limit_area type (#53866)
1 parent b126638 commit 3860884

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/internals/blocks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1352,7 +1352,7 @@ def pad_or_backfill(
13521352
inplace: bool = False,
13531353
limit: int | None = None,
13541354
limit_direction: Literal["forward", "backward", "both"] = "forward",
1355-
limit_area: str | None = None,
1355+
limit_area: Literal["inside", "outside"] | None = None,
13561356
fill_value: Any | None = None,
13571357
downcast: Literal["infer"] | None = None,
13581358
using_cow: bool = False,

0 commit comments

Comments
 (0)