Skip to content

Commit f560c32

Browse files
committed
Recursively search _libs
1 parent 34a13cc commit f560c32

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

ci/lint.sh

+1-3
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,17 @@ if [ "$LINT" ]; then
3838
if [ $? -ne "0" ]; then
3939
RET=1
4040
fi
41-
4241
done
4342
echo "Linting *.pxi.in DONE"
4443

4544
echo "Linting *.pxd"
46-
for path in 'src'
45+
for path in '_libs'
4746
do
4847
echo "linting -> pandas/$path"
4948
flake8 pandas/$path --filename=*.pxd --select=E501,E302,E203,E111,E114,E221,E303,E231,E126,F403
5049
if [ $? -ne "0" ]; then
5150
RET=1
5251
fi
53-
5452
done
5553
echo "Linting *.pxd DONE"
5654

0 commit comments

Comments
 (0)