Skip to content

Commit b27c541

Browse files
datapythonistajreback
authored andcommitted
DOC: Improving code quality of doc/make.py, PEP-8, refactoring and removing unused commands (#19631) (#19634)
1 parent 3ab8623 commit b27c541

File tree

3 files changed

+198
-386
lines changed

3 files changed

+198
-386
lines changed

ci/lint.sh

+7
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,13 @@ if [ "$LINT" ]; then
3737
fi
3838
echo "Linting scripts/*.py DONE"
3939

40+
echo "Linting doc script"
41+
flake8 doc/make.py
42+
if [ $? -ne "0" ]; then
43+
RET=1
44+
fi
45+
echo "Linting doc script DONE"
46+
4047
echo "Linting *.pyx"
4148
flake8 pandas --filename=*.pyx --select=E501,E302,E203,E111,E114,E221,E303,E128,E231,E126,E265,E305,E301,E127,E261,E271,E129,W291,E222,E241,E123,F403
4249
if [ $? -ne "0" ]; then

0 commit comments

Comments
 (0)