We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84df7ad commit 0cb3924Copy full SHA for 0cb3924
maint/scripts/run_autopep8.sh
@@ -5,4 +5,5 @@
5
# W602 is "deprecated form of raising exception", but the fix is incorrect
6
# (and I'm not sure if the three-argument form of raise is really deprecated
7
# in the first place)
8
-autopep8 --ignore=W602 -i tornado/*.py tornado/platform/*.py tornado/test/*.py
+# E501 is "line longer than 80 chars" but the automated fix is ugly.
9
+autopep8 --ignore=W602,E501 -i tornado/*.py tornado/platform/*.py tornado/test/*.py
0 commit comments