changed parameter hint

This commit is contained in:
Soham-KT 2024-10-06 13:52:28 +05:30
parent b13ce589ad
commit 4e29f54e98

View File

@ -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.