@@ -1613,9 +1613,9 @@ cdef class BusinessHour(BusinessMixin):
1613
1613
Normalize start/end dates to midnight before generating date range.
1614
1614
weekmask : str, Default 'Mon Tue Wed Thu Fri'
1615
1615
Weekmask of valid business days, passed to ``numpy.busdaycalendar``.
1616
- start : str, default "09:00"
1616
+ start : str, time, or list of str/time, default "09:00"
1617
1617
Start time of your custom business hour in 24h format.
1618
- end : str, default: "17:00"
1618
+ end : str, time, or list of str/time, default: "17:00"
1619
1619
End time of your custom business hour in 24h format.
1620
1620
1621
1621
Examples
@@ -3578,9 +3578,9 @@ cdef class CustomBusinessHour(BusinessHour):
3578
3578
Normalize start/end dates to midnight before generating date range.
3579
3579
weekmask : str, Default 'Mon Tue Wed Thu Fri'
3580
3580
Weekmask of valid business days, passed to ``numpy.busdaycalendar``.
3581
- start : str, default "09:00"
3581
+ start : str, time, or list of str/time, default "09:00"
3582
3582
Start time of your custom business hour in 24h format.
3583
- end : str, default: "17:00"
3583
+ end : str, time, or list of str/time, default: "17:00"
3584
3584
End time of your custom business hour in 24h format.
3585
3585
3586
3586
Examples
0 commit comments