python3-pyflakes

passive checker of Python 3 programs - Python modules

Install

All systems
curl cmd.cat/python3-pyflakes.sh
Debian Debian
apt-get install python3-pyflakes
Ubuntu
apt-get install python3-pyflakes
image/svg+xml Kali Linux
apt-get install python3-pyflakes
Fedora
dnf install python3-pyflakes
Windows (WSL2)
sudo apt-get update sudo apt-get install python3-pyflakes
Raspbian
apt-get install python3-pyflakes

python3-pyflakes

passive checker of Python 3 programs - Python modules

Pyflakes is program to analyze Python programs and detect various errors. It works by parsing the source file, not importing it, so it is safe to use on modules with side effects. It's also much faster. Unlike PyLint, Pyflakes checks only for logical errors in programs; it does not perform any checks on style. This is the Python 3 library version.