From c2a41eb0a207c4190da6a4b5ac0714499d2b65e4 Mon Sep 17 00:00:00 2001 From: Marco Gorelli <33491632+MarcoGorelli@users.noreply.github.com> Date: Fri, 22 Aug 2025 13:42:00 +0100 Subject: [PATCH] just remove `__reduce__` --- pandas-stubs/_libs/tslibs/offsets.pyi | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pandas-stubs/_libs/tslibs/offsets.pyi b/pandas-stubs/_libs/tslibs/offsets.pyi index 132d6e86..a6cae3ce 100644 --- a/pandas-stubs/_libs/tslibs/offsets.pyi +++ b/pandas-stubs/_libs/tslibs/offsets.pyi @@ -89,8 +89,7 @@ class BaseOffset: @property def nanos(self) -> int: ... -class SingleConstructorOffset(BaseOffset): - def __reduce__(self): ... +class SingleConstructorOffset(BaseOffset): ... class Tick(SingleConstructorOffset): def __init__(self, n: int = ..., normalize: bool = ...) -> None: ...