We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dd07e6 commit 92b2547Copy full SHA for 92b2547
adaptive/tests/test_average_learner.py
@@ -5,7 +5,7 @@
5
from adaptive.learner import AverageLearner
6
7
8
-def test_only_returns_new_points():
+def test_only_returns_new_points() -> None:
9
learner = AverageLearner(lambda x: x, atol=None, rtol=0.01)
10
11
# Only tell it n = 5...10
@@ -21,7 +21,7 @@ def test_only_returns_new_points():
21
assert learner.ask(1)[0][0] == 10
22
23
24
-def test_avg_std_and_npoints():
+def test_avg_std_and_npoints() -> None:
25
26
27
for i in range(300):
0 commit comments