From 10bdd07377841bd65efaffa610569e0803d9d0f8 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 6 Oct 2024 09:28:01 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- maths/weddles_rule.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/maths/weddles_rule.py b/maths/weddles_rule.py index e89300ec7..c4cc70518 100644 --- a/maths/weddles_rule.py +++ b/maths/weddles_rule.py @@ -52,8 +52,9 @@ def safe_function_eval(func_str: str) -> Callable: return lambda_func -def compute_table(func: Callable, lower_limit: float, - upper_limit: float, acc: int) -> tuple[np.ndarray, float]: +def compute_table( + func: Callable, lower_limit: float, upper_limit: float, acc: int +) -> tuple[np.ndarray, float]: """ Compute the table of function values based on the limits and accuracy.