From 5b17ec2360861a45af973939d2644d8cbbbb4988 Mon Sep 17 00:00:00 2001 From: Lucinda <114314487+camacluc@users.noreply.github.com> Date: Tue, 3 Jun 2025 12:21:10 -0700 Subject: [PATCH] Update offsets.pyx fix constructor for offset BusinessDay --- pandas/_libs/tslibs/offsets.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/_libs/tslibs/offsets.pyx b/pandas/_libs/tslibs/offsets.pyx index a16964435ef50..45baa7bce8d67 100644 --- a/pandas/_libs/tslibs/offsets.pyx +++ b/pandas/_libs/tslibs/offsets.pyx @@ -1836,7 +1836,7 @@ cdef class BusinessMixin(SingleConstructorOffset): BaseOffset.__setstate__(self, state) -cdef class BusinessDay(BusinessMixin): +cdef class pandas.tseries.offsets.BusinessDay( n=1, normalize=False, offset=timedelta(0)): """ DateOffset subclass representing possibly n business days.