@@ -204,7 +204,8 @@ def __add__(date):
204
204
normalize : bool, default False
205
205
Whether to round the result of a DateOffset addition down to the
206
206
previous midnight.
207
- **kwds : Temporal parameter that add to or replace the offset value.
207
+ **kwds
208
+ Temporal parameter that add to or replace the offset value.
208
209
209
210
Parameters that **add** to the offset (like Timedelta):
210
211
@@ -1005,12 +1006,12 @@ class CustomBusinessDay(_CustomMixin, BusinessDay):
1005
1006
----------
1006
1007
n : int, default 1
1007
1008
normalize : bool, default False
1008
- Normalize start/end dates to midnight before generating date range
1009
+ Normalize start/end dates to midnight before generating date range.
1009
1010
weekmask : str, Default 'Mon Tue Wed Thu Fri'
1010
- Weekmask of valid business days, passed to ``numpy.busdaycalendar``
1011
+ Weekmask of valid business days, passed to ``numpy.busdaycalendar``.
1011
1012
holidays : list
1012
1013
List/array of dates to exclude from the set of valid business days,
1013
- passed to ``numpy.busdaycalendar``
1014
+ passed to ``numpy.busdaycalendar``.
1014
1015
calendar : pd.HolidayCalendar or np.busdaycalendar
1015
1016
offset : timedelta, default timedelta(0)
1016
1017
"""
@@ -1519,7 +1520,7 @@ class Week(DateOffset):
1519
1520
Parameters
1520
1521
----------
1521
1522
weekday : int, default None
1522
- Always generate specific day of week. 0 for Monday
1523
+ Always generate specific day of week. 0 for Monday.
1523
1524
"""
1524
1525
1525
1526
_adjust_dst = True
@@ -2085,7 +2086,9 @@ class FY5253(DateOffset):
2085
2086
The month in which the fiscal year ends.
2086
2087
2087
2088
variation : str, default "nearest"
2088
- Method of employing 4-4-5 calendar. There are two options:
2089
+ Method of employing 4-4-5 calendar.
2090
+
2091
+ There are two options:
2089
2092
2090
2093
- "nearest" means year end is **weekday** closest to last day of month in year.
2091
2094
- "last" means year end is final **weekday** of the final month in fiscal year.
@@ -2304,7 +2307,9 @@ class FY5253Quarter(DateOffset):
2304
2307
The quarter number that has the leap or 14 week when needed.
2305
2308
2306
2309
variation : str, default "nearest"
2307
- Method of employing 4-4-5 calendar. There are two options:
2310
+ Method of employing 4-4-5 calendar.
2311
+
2312
+ There are two options:
2308
2313
2309
2314
- "nearest" means year end is **weekday** closest to last day of month in year.
2310
2315
- "last" means year end is final **weekday** of the final month in fiscal year.
0 commit comments