From 5ce00a1271647b72fb89ce244053e1cd89e60946 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 22:31:28 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- heat/heat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heat/heat.py b/heat/heat.py index 3d4496d..5351e70 100644 --- a/heat/heat.py +++ b/heat/heat.py @@ -1,4 +1,5 @@ """The 2D heat model.""" + from __future__ import annotations from io import TextIOBase @@ -64,7 +65,6 @@ def solve_2d( class Heat: - """Solve the Heat equation on a grid. Examples