Skip to content

Commit cb1f9b0

Browse files
committed
Make pretty
1 parent 5d89a4e commit cb1f9b0

File tree

3 files changed

+1
-2
lines changed

3 files changed

+1
-2
lines changed

heat/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Model the diffusion of heat over a 2D plate."""
2+
23
from ._version import __version__
34
from .bmi_heat import BmiHeat
45
from .heat import Heat, solve_2d

heat/bmi_heat.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99

1010
class BmiHeat(Bmi):
11-
1211
"""Solve the heat equation for a 2D plate."""
1312

1413
_name = "The 2D Heat Equation"

heat/heat.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ def solve_2d(temp, spacing, out=None, alpha=1.0, time_step=1.0):
5454

5555

5656
class Heat(object):
57-
5857
"""Solve the Heat equation on a grid.
5958
6059
Examples

0 commit comments

Comments
 (0)