Skip to content

Commit

Permalink
Fix variable name (#250)
Browse files Browse the repository at this point in the history
  • Loading branch information
hakancelikdev authored Sep 21, 2022
1 parent 307ce31 commit 605d420
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ inputs:
runs:
using: "composite"
steps:
- run: pip install --upgrade pip && python -m pip install unimport==0.12.0
- run: pip install --upgrade pip && python -m pip install unimport==0.12.1
shell: bash
- run: unimport --color auto --gitignore --ignore-init ${{ inputs.extra_args }}
shell: bash
Expand Down
7 changes: 7 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## 0.12.1

### Fixes

- 🐛 Fix changelog url PR #250 by @hakancelikdev
- 🐛 Fix Name Error PR #250 by @hakancelikdev

## 0.12.0

### Features
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ classifiers =
project_urls =
Documentation = https://unimport.hakancelik.dev/
Issues = https://github.com/hakancelikdev/unimport/issues/
Changelog = https://unimport.hakancelik.dev/changelog
Changelog = https://unimport.hakancelik.dev/CHANGELOG/

[options]
python_requires = >=3.6
Expand Down
2 changes: 1 addition & 1 deletion src/unimport/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.12.0"
__version__ = "0.12.1"
__description__ = "A linter, formatter for finding and removing unused import statements."
2 changes: 1 addition & 1 deletion src/unimport/analyzers/importable.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from unimport import utils
from unimport.analyzers.decarators import generic_visit
from unimport.analyzers.utils import first_parent_match, set_tree_parents
from unimport.statement import Scope
from unimport.statement import Name, Scope

__all__ = ("ImportableAnalyzer",)

Expand Down

0 comments on commit 605d420

Please sign in to comment.