Skip to content

Commit 3950b3c

Browse files
committed
Updated code_checks.sh
1 parent 0388292 commit 3950b3c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

ci/code_checks.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,8 @@ fi
209209
### DOCSTRINGS ###
210210
if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
211211

212-
MSG='Validate docstrings (GL06, SS04, PR03, PR05, EX04)' ; echo $MSG
213-
$BASE_DIR/scripts/validate_docstrings.py --format=azure --errors=GL06,SS04,PR03,PR05,EX04
212+
MSG='Validate docstrings (GL09, GL06, SS04, PR03, PR05, EX04)' ; echo $MSG
213+
$BASE_DIR/scripts/validate_docstrings.py --format=azure --errors=GL09,GL06,SS04,PR03,PR05,EX04
214214
RET=$(($RET + $?)) ; echo $MSG "DONE"
215215

216216
fi

scripts/validate_docstrings.py

-1
Original file line numberDiff line numberDiff line change
@@ -862,7 +862,6 @@ def header(title, width=80, char='#'):
862862

863863
else:
864864
result = validate_one(func_name)
865-
866865
sys.stderr.write(header('Docstring ({})'.format(func_name)))
867866
sys.stderr.write('{}\n'.format(result['docstring']))
868867
sys.stderr.write(header('Validation'))

0 commit comments

Comments
 (0)