Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 6, 2024
commit 10bdd07377841bd65efaffa610569e0803d9d0f8
5 changes: 3 additions & 2 deletions maths/weddles_rule.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
Loading