Skip to content

Commit 672de37

Browse files
committed
update doc-string
1 parent 98318e0 commit 672de37

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

adaptive/learner/average_learner1D.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,8 +362,10 @@ def tell_many_at_point(self, x, ys):
362362
363363
Parameters
364364
----------
365-
x : Value from the function domain
366-
ys : List of data samples at x
365+
x : float
366+
Value from the function domain.
367+
ys : Sequence[float]
368+
List of data samples at ``x``.
367369
"""
368370
# Check x is within the bounds
369371
if not np.prod(x >= self.bounds[0] and x <= self.bounds[1]):

0 commit comments

Comments
 (0)