Skip to content

Commit

Permalink
Make pretty
Browse files Browse the repository at this point in the history
  • Loading branch information
mdpiper committed Oct 17, 2024
1 parent 5d89a4e commit cb1f9b0
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions heat/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Model the diffusion of heat over a 2D plate."""

from ._version import __version__
from .bmi_heat import BmiHeat
from .heat import Heat, solve_2d
Expand Down
1 change: 0 additions & 1 deletion heat/bmi_heat.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@


class BmiHeat(Bmi):

"""Solve the heat equation for a 2D plate."""

_name = "The 2D Heat Equation"
Expand Down
1 change: 0 additions & 1 deletion heat/heat.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ def solve_2d(temp, spacing, out=None, alpha=1.0, time_step=1.0):


class Heat(object):

"""Solve the Heat equation on a grid.
Examples
Expand Down

0 comments on commit cb1f9b0

Please sign in to comment.