Skip to content

Commit 5bc5a15

Browse files
committed
remove some lint
1 parent dc50dc7 commit 5bc5a15

5 files changed

Lines changed: 8 additions & 5 deletions

File tree

heat/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
from ._version import __version__
44
from .bmi_heat import BmiHeat
5-
from .heat import Heat, solve_2d
5+
from .heat import Heat
6+
from .heat import solve_2d
67

78
__all__ = ["__version__", "BmiHeat", "solve_2d", "Heat"]

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def clean(session):
8383

8484
shutil.rmtree("build", ignore_errors=True)
8585
shutil.rmtree("dist", ignore_errors=True)
86-
shutil.rmtree(f"src/{PROJECT}.egg-info", ignore_errors=True)
86+
shutil.rmtree(f"{PROJECT}.egg-info", ignore_errors=True)
8787
shutil.rmtree(".pytest_cache", ignore_errors=True)
8888
shutil.rmtree(".venv", ignore_errors=True)
8989

requirements-testing.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ coveralls
44
isort
55
pytest
66
pytest-cov
7-
ruff

tests/get_value_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/usr/bin/env python
22
import numpy as np
3-
from numpy.testing import assert_array_almost_equal, assert_array_less
3+
from numpy.testing import assert_array_almost_equal
4+
from numpy.testing import assert_array_less
45

56
from heat import BmiHeat
67

tests/irf_test.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33

44
import numpy as np
55
import yaml
6-
from numpy.testing import assert_almost_equal, assert_array_equal, assert_array_less
6+
from numpy.testing import assert_almost_equal
7+
from numpy.testing import assert_array_equal
8+
from numpy.testing import assert_array_less
79

810
from heat import BmiHeat
911

0 commit comments

Comments
 (0)