Skip to content

Commit

Permalink
Update pretty rule; make pretty
Browse files Browse the repository at this point in the history
  • Loading branch information
mdpiper committed Aug 24, 2021
1 parent 1f16375 commit 03398d3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ clean-test: ## remove test and coverage artifacts
rm -fr .pytest_cache

lint: ## check style with flake8
flake8 pymt_heatcxx
flake8 pymt_heatcxx examples

pretty:
find pymt_heatcxx -name '*.py' | xargs isort
black setup.py pymt_heatcxx
find pymt_heatcxx examples -name '*.py' | xargs isort
black setup.py pymt_heatcxx examples

test: ## run tests quickly with the default Python
bmi-test pymt_heatcxx.bmi:HeatModel -vvv
Expand Down
4 changes: 2 additions & 2 deletions pymt_heatcxx/lib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

from .heatmodel import HeatModel


__all__ = ["HeatModel",
__all__ = [
"HeatModel",
]

0 comments on commit 03398d3

Please sign in to comment.