Skip to content

Commit 093fcef

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

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tutorial/tests/test_11_functional_programming.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
import requests
1111
from numpy.typing import NDArray
1212

13-
1413
#
1514
# Example: Pure Function
1615
#
@@ -29,7 +28,9 @@ def reference_pure_function(array, new_element):
2928
],
3029
)
3130
def test_pure_function(array, new_element, function_to_test):
32-
assert function_to_test(array, new_element) == reference_pure_function(array, new_element)
31+
assert function_to_test(array, new_element) == reference_pure_function(
32+
array, new_element
33+
)
3334

3435

3536
#

0 commit comments

Comments
 (0)