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 21, 2024
1 parent 9879bf2 commit 7befb25
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion heat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

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

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

from heat import BmiHeat

Expand Down
4 changes: 3 additions & 1 deletion tests/irf_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@

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

from heat import BmiHeat

Expand Down

0 comments on commit 7befb25

Please sign in to comment.