[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot] 2024-10-06 09:28:01 +00:00
parent 2cdd70bdd0
commit 10bdd07377

View File

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