6 lines
126 B
Python
6 lines
126 B
Python
from pyflakes.api import main
|
|
|
|
# python -m pyflakes (with Python >= 2.7)
|
|
if __name__ == '__main__':
|
|
main(prog='pyflakes')
|