Skip to content

Commit 5fc4c39

Browse files
victormoronPingviinituutti
authored andcommitted
DOC: Fixes to docstrings and add PR10 (space before colon) to validation (pandas-dev#25109)
1 parent 904401f commit 5fc4c39

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

ci/code_checks.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ fi
240240
### DOCSTRINGS ###
241241
if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
242242

243-
MSG='Validate docstrings (GL06, GL07, GL09, SS04, PR03, PR05, EX04, RT04, SS05, SA05)' ; echo $MSG
243+
MSG='Validate docstrings (GL06, GL07, GL09, SS04, PR03, PR05, PR10, EX04, RT04, SS05, SA05)' ; echo $MSG
244244
$BASE_DIR/scripts/validate_docstrings.py --format=azure --errors=GL06,GL07,GL09,SS04,PR03,PR05,EX04,RT04,SS05,SA05
245245
RET=$(($RET + $?)) ; echo $MSG "DONE"
246246

pandas/core/config.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -282,8 +282,8 @@ def __doc__(self):
282282
Note: partial matches are supported for convenience, but unless you use the
283283
full option name (e.g. x.y.z.option_name), your code may break in future
284284
versions if new options with similar names are introduced.
285-
value :
286-
new value of option.
285+
value : object
286+
New value of option.
287287
288288
Returns
289289
-------

pandas/io/excel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1003,7 +1003,7 @@ class ExcelWriter(object):
10031003
mode : {'w' or 'a'}, default 'w'
10041004
File mode to use (write or append).
10051005
1006-
.. versionadded:: 0.24.0
1006+
.. versionadded:: 0.24.0
10071007
10081008
Attributes
10091009
----------

pandas/plotting/_core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2550,7 +2550,7 @@ def boxplot_frame_groupby(grouped, subplots=True, column=None, fontsize=None,
25502550
Parameters
25512551
----------
25522552
grouped : Grouped DataFrame
2553-
subplots :
2553+
subplots : bool
25542554
* ``False`` - no subplots will be used
25552555
* ``True`` - create a subplot for each group
25562556
column : column name or list of names, or vector

0 commit comments

Comments
 (0)