D2wnloader
D2wnloader copied to clipboard
In Pythonista, ‘Analyse (pyflakes)’ raises issues
$ flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
./main.py:16:1: E302 expected 2 blank lines, found 1
./main.py:45:15: E128 continuation line under-indented for visual indent
./main.py:103:23: E261 at least two spaces before inline comment
./main.py:104:128: E501 line too long (133 > 127 characters)
./main.py:110:17: E722 do not use bare 'except'
./main.py:162:1: W391 blank line at end of file
./main.py:162:1: W293 blank line contains whitespace
1 E128 continuation line under-indented for visual indent
1 E261 at least two spaces before inline comment
1 E302 expected 2 blank lines, found 1
1 E501 line too long (133 > 127 characters)
1 E722 do not use bare 'except'
1 W293 blank line contains whitespace
1 W391 blank line at end of file
7
https://realpython.com/the-most-diabolical-python-antipattern/