pyflakes
TLDR
Check Python file for errors
SYNOPSIS
pyflakes [files]
DESCRIPTION
pyflakes analyzes Python code for errors. Static analysis tool.
The tool finds undefined names and imports. Fast and simple checker.
pyflakes finds Python errors.
PARAMETERS
FILES
Python files to check.
CAVEATS
Only checks for errors, not style. Faster than pylint.
HISTORY
Pyflakes was created for fast static analysis of Python code.
