From 0c65d618eb6f6ff5ef44c6dcc6eea59a6803b2d0 Mon Sep 17 00:00:00 2001 From: Matthias Diener <mdiener@illinois.edu> Date: Mon, 19 Aug 2024 10:41:05 -0500 Subject: [PATCH] fix mypy convergence errors --- pytools/convergence.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pytools/convergence.py b/pytools/convergence.py index ad7b74c..7cf9692 100644 --- a/pytools/convergence.py +++ b/pytools/convergence.py @@ -67,7 +67,7 @@ class EOCRecorder: # NOTE: in case any of the errors are exactly 0.0, which # can give NaNs in `estimate_order_of_convergence` - emax = np.amax(errors) + emax: float = np.amax(errors) errors += (1 if emax == 0 else emax) * np.finfo(errors.dtype).eps size = len(abscissae) @@ -82,7 +82,8 @@ class EOCRecorder: return result def order_estimate(self) -> float: - return self.estimate_order_of_convergence()[0, 1] + from typing import cast + return cast(float, self.estimate_order_of_convergence()[0, 1]) def max_error(self) -> float: return max(err for absc, err in self.history) -- GitLab