Skip to content

Commit

Permalink
Merge pull request #45 from kivy-garden/feature/fix_linter
Browse files Browse the repository at this point in the history
🚨 Fixes isort linting
  • Loading branch information
AndreMiras committed Oct 28, 2020
2 parents 9f38688 + 435ceb0 commit 16ec4a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ pytest: virtualenv/test
PYTHONPATH=src $(PYTEST) --cov src/ --cov-report html tests/

lint/isort-check: virtualenv/test
$(ISORT) --check-only --recursive --diff $(SOURCES)
$(ISORT) --check --diff $(SOURCES)

lint/isort-fix: virtualenv/test
$(ISORT) --recursive $(SOURCES)
$(ISORT) $(SOURCES)

lint/flake8: virtualenv/test
$(FLAKE8) $(SOURCES)
Expand Down
1 change: 1 addition & 0 deletions tests/kivy_garden/zbarcam/test_zbarcam.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

from kivy.base import EventLoop
from kivy.core.image import Image

from kivy_garden.zbarcam import ZBarCam

FIXTURE_DIR = os.path.join(
Expand Down

0 comments on commit 16ec4a7

Please sign in to comment.