From d2cd6c7fd8d56a728ff8ff4bb453e13214275755 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 22:46:34 +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