Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 18, 2024
1 parent 69a5205 commit af7ba89
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
3 changes: 1 addition & 2 deletions heat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

from ._version import __version__
from .bmi_heat import BmiHeat
from .heat import Heat
from .heat import solve_2d
from .heat import Heat, solve_2d

__all__ = ["__version__", "BmiHeat", "solve_2d", "Heat"]
3 changes: 1 addition & 2 deletions tests/get_value_test.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/usr/bin/env python
import numpy as np
from numpy.testing import assert_array_almost_equal
from numpy.testing import assert_array_less
from numpy.testing import assert_array_almost_equal, assert_array_less

from heat import BmiHeat

Expand Down
5 changes: 2 additions & 3 deletions tests/irf_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@

import numpy as np
import yaml
from numpy.testing import assert_almost_equal
from numpy.testing import assert_array_equal
from numpy.testing import assert_array_less
from numpy.testing import (assert_almost_equal, assert_array_equal,
assert_array_less)

from heat import BmiHeat

Expand Down

0 comments on commit af7ba89

Please sign in to comment.