Thomas Monjalon, Oct 15, 2025 at 21:11: > 15/10/2025 19:50, Stephen Hemminger: >> Minor stuff. >> >> $ flake8 --max-line-length=100 dpdk-mbuf-history-parser.py >> dpdk-mbuf-history-parser.py:14:1: F401 'sys' imported but unused >> dpdk-mbuf-history-parser.py:29:27: E203 whitespace before ':' > > Interesting, thanks. > > I'm a bit lost about Python linters. > I ran black, should I run flake8 + black? something else?
Just black. Flake8 style is completely obsolete. The unused import warning is legit though. We should have a centralized python linter process in DPDK. The main issue is that most of the code will not pass as it is :D -- Robin > Do not pick the flowers.

