Skip to content

Commit 453d795

Browse files
amyreesefacebook-github-bot
authored andcommitted
remove references to flake8-2 and flake8-3
Summary: The internal `flake8-2` and `flake8-3` binaries are now deprecated copies of the main `flake8` binary. This removes remaining references to the deprecated binaries in preparation for them being removed in future deployments of flake8. maintaining_tech_debt Reviewed By: lisroach, vaibhava0 Differential Revision: D37766758 fbshipit-source-id: ee89cecb0e295b8037843e7e28344b156a847554
1 parent 5e38c1f commit 453d795

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dev/linter.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ echo "Running black ..."
2626
black -l 100 .
2727

2828
echo "Running flake8 ..."
29-
if [ -x "$(command -v flake8-3)" ]; then
30-
flake8-3 .
29+
if [ -x "$(command -v flake8)" ]; then
30+
flake8 .
3131
else
3232
python3 -m flake8 .
3333
fi

0 commit comments

Comments
 (0)