一个工具,用于检查 Python 代码中未被使用的引入和变量。 更多信息:https://github.com/myint/autoflake.
autoflake --remove-unused-variables {{路径/到/文件.py}}
autoflake --remove-all-unused-imports {{路径/到/文件1.py 路径/到/文件2.py ...}}
autoflake --remove-unused-variables --in-place {{路径/到/文件.py}}
autoflake --remove-unused-variables --in-place --recursive {{路径/到/目录}}