Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 682 Bytes

README.md

File metadata and controls

19 lines (10 loc) · 682 Bytes

Autoflake README

Project link

Introduction

autoflake removes unused imports and unused variables from Python code. It makes use of pyflakes to do this.

By default, autoflake only removes unused imports for modules that are part of the standard library. (Other modules may have side effects that make them unsafe to remove automatically.) Removal of unused variables is also disabled by default.

autoflake also removes useless pass statements.

Usage

Usage

License

MIT License