Skip to content

Commit c9c45ad

Browse files
DOC: fix PR02 for pandas.tseries.offsets.BQuarterEnd and pandas.tseries.offsets.QuarterEnd (#58783)
DOC: fix PR02
1 parent a7ea77e commit c9c45ad

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

ci/code_checks.sh

-2
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
519519
-i "pandas.tseries.offsets.BQuarterBegin.normalize GL08" \
520520
-i "pandas.tseries.offsets.BQuarterBegin.rule_code GL08" \
521521
-i "pandas.tseries.offsets.BQuarterBegin.startingMonth GL08" \
522-
-i "pandas.tseries.offsets.BQuarterEnd PR02" \
523522
-i "pandas.tseries.offsets.BQuarterEnd.freqstr SA01" \
524523
-i "pandas.tseries.offsets.BQuarterEnd.is_on_offset GL08" \
525524
-i "pandas.tseries.offsets.BQuarterEnd.n GL08" \
@@ -735,7 +734,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
735734
-i "pandas.tseries.offsets.QuarterBegin.normalize GL08" \
736735
-i "pandas.tseries.offsets.QuarterBegin.rule_code GL08" \
737736
-i "pandas.tseries.offsets.QuarterBegin.startingMonth GL08" \
738-
-i "pandas.tseries.offsets.QuarterEnd PR02" \
739737
-i "pandas.tseries.offsets.QuarterEnd.freqstr SA01" \
740738
-i "pandas.tseries.offsets.QuarterEnd.is_on_offset GL08" \
741739
-i "pandas.tseries.offsets.QuarterEnd.n GL08" \

pandas/_libs/tslibs/offsets.pyx

+2-2
Original file line numberDiff line numberDiff line change
@@ -2756,7 +2756,7 @@ cdef class BQuarterEnd(QuarterOffset):
27562756
startingMonth = 2 corresponds to dates like 2/28/2007, 5/31/2007, ...
27572757
startingMonth = 3 corresponds to dates like 3/30/2007, 6/29/2007, ...
27582758
2759-
Parameters
2759+
Attributes
27602760
----------
27612761
n : int, default 1
27622762
The number of quarters represented.
@@ -2838,7 +2838,7 @@ cdef class QuarterEnd(QuarterOffset):
28382838
startingMonth = 2 corresponds to dates like 2/28/2007, 5/31/2007, ...
28392839
startingMonth = 3 corresponds to dates like 3/31/2007, 6/30/2007, ...
28402840
2841-
Parameters
2841+
Attributes
28422842
----------
28432843
n : int, default 1
28442844
The number of quarters represented.

0 commit comments

Comments
 (0)