Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ Add the following to your `.pre-commit-config.yaml`

```yaml
- repo: https://github.com/PyCQA/autoflake
rev: v2.3.2
rev: v2.3.3
hooks:
- id: autoflake
```
Expand All @@ -216,7 +216,7 @@ of arguments:

```yaml
- repo: https://github.com/PyCQA/autoflake
rev: v2.3.2
rev: v2.3.3
hooks:
- id: autoflake
args: [--remove-all-unused-imports, --in-place]
Expand Down
2 changes: 1 addition & 1 deletion autoflake.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
import pyflakes.messages
import pyflakes.reporter

__version__ = "2.3.2"
__version__ = "2.3.3"


_LOGGER = logging.getLogger("autoflake")
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ build-backend = "hatchling.build"
[project]
name = "autoflake"
description = "Removes unused imports and unused variables"
license = { text = "MIT" }
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
Expand Down Expand Up @@ -34,5 +35,5 @@ path = "autoflake.py"
exclude = ["/.github"]

[tool.hatch.build]
include = ["/autoflake.py", "/test_autoflake.py", "/LICENSE", "/README.md"]
include = ["/autoflake.py"]
exclude = ["/.gitignore"]
Loading