@@ -1615,9 +1615,9 @@ cdef class BusinessHour(BusinessMixin):
1615
1615
Normalize start/end dates to midnight before generating date range.
1616
1616
weekmask : str, Default 'Mon Tue Wed Thu Fri'
1617
1617
Weekmask of valid business days, passed to ``numpy.busdaycalendar``.
1618
- start : str, default "09:00"
1618
+ start : str, time, or list of str/time, default "09:00"
1619
1619
Start time of your custom business hour in 24h format.
1620
- end : str, default: "17:00"
1620
+ end : str, time, or list of str/time, default: "17:00"
1621
1621
End time of your custom business hour in 24h format.
1622
1622
1623
1623
Examples
@@ -3619,9 +3619,9 @@ cdef class CustomBusinessHour(BusinessHour):
3619
3619
Normalize start/end dates to midnight before generating date range.
3620
3620
weekmask : str, Default 'Mon Tue Wed Thu Fri'
3621
3621
Weekmask of valid business days, passed to ``numpy.busdaycalendar``.
3622
- start : str, default "09:00"
3622
+ start : str, time, or list of str/time, default "09:00"
3623
3623
Start time of your custom business hour in 24h format.
3624
- end : str, default: "17:00"
3624
+ end : str, time, or list of str/time, default: "17:00"
3625
3625
End time of your custom business hour in 24h format.
3626
3626
3627
3627
Examples
0 commit comments