Skip to content

Commit 78c8e17

Browse files
jbrockmendeljreback
authored andcommitted
flake8 cleanup (#17964)
1 parent f39f62e commit 78c8e17

File tree

2 files changed

+104
-90
lines changed

2 files changed

+104
-90
lines changed

ci/lint.sh

+7
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@ if [ "$LINT" ]; then
1616
fi
1717
echo "Linting *.py DONE"
1818

19+
echo "Linting setup.py"
20+
flake8 setup.py
21+
if [ $? -ne "0" ]; then
22+
RET=1
23+
fi
24+
echo "Linting setup.py DONE"
25+
1926
echo "Linting *.pyx"
2027
flake8 pandas --filename=*.pyx --select=E501,E302,E203,E111,E114,E221,E303,E128,E231,E126
2128
if [ $? -ne "0" ]; then

0 commit comments

Comments
 (0)