Skip to content

Commit

Permalink
[fix] fix lint warngings
Browse files Browse the repository at this point in the history
  • Loading branch information
riku-sakamoto committed Mar 8, 2024
1 parent 31d3368 commit dd2b995
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ isort:
mypy:
poetry run mypy src

.PHONY: format
format:
$(MAKE) black
$(MAKE) isort

.PHONY: test
test:
poetry run pytest tests --cov=src --cov-report term-missing --durations 5
Expand Down
4 changes: 1 addition & 3 deletions src/phlower/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from phlower.version import __version__

__all__ = [
"__version__"
]
__all__ = ["__version__"]

0 comments on commit dd2b995

Please sign in to comment.