Skip to content

Commit 11c14e1

Browse files
datapythonistaharisbal
authored and
harisbal
committed
DOC: Improving code quality of doc/make.py, PEP-8, refactoring and removing unused commands (pandas-dev#19631) (pandas-dev#19634)
1 parent 49bfc0b commit 11c14e1

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)