(
method: Literal["ffill", "pad", "bfill", "backfill"],
*,
allow_nearest: Literal[False] = ...,
)
| 155 | |
| 156 | @overload |
| 157 | def clean_fill_method( |
| 158 | method: Literal["ffill", "pad", "bfill", "backfill"], |
| 159 | *, |
| 160 | allow_nearest: Literal[False] = ..., |
| 161 | ) -> Literal["pad", "backfill"]: ... |
| 162 | |
| 163 | |
| 164 | @overload |
no test coverage detected