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 {{경로/대상/디렉터리}}