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