Skip to content

Commit c0b656b

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent cebc380 commit c0b656b

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

maths/numerical_analysis/integration_by_simpson_approx.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ def f(x: float) -> float:
3636
"""
3737

3838

39-
def simpson_integration(function: Callable, a: float, b: float, precision: int = 4) -> float:
39+
def simpson_integration(
40+
function: Callable, a: float, b: float, precision: int = 4
41+
) -> float:
4042
"""
4143
Args:
4244
function : the function which's integration is desired

0 commit comments

Comments
 (0)