From 4e29f54e98351b5c609299c7b98d575d6719ae63 Mon Sep 17 00:00:00 2001 From: Soham-KT Date: Sun, 6 Oct 2024 13:52:28 +0530 Subject: [PATCH] changed parameter hint --- maths/weddles_rule.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maths/weddles_rule.py b/maths/weddles_rule.py index 0c26a499d..7159c466a 100644 --- a/maths/weddles_rule.py +++ b/maths/weddles_rule.py @@ -53,7 +53,7 @@ def safe_function_eval(func_str: str) -> float: return lambda_func -def compute_table(func: str, lower_limit: float, upper_limit: float, acc: int) -> tuple: +def compute_table(func: float, lower_limit: float, upper_limit: float, acc: int) -> tuple: """ Compute the table of function values based on the limits and accuracy.