Skip to content

Commit 91407da

Browse files
committed
type hint fixes for adaptive/learner/skopt_learner.py
1 parent 0a707dd commit 91407da

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

adaptive/learner/skopt_learner.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,7 @@ def ask(
6363
self, n: int, tell_pending: bool = True
6464
) -> Union[
6565
Tuple[List[float], List[float]],
66-
Tuple[List[List[float]], List[float]],
67-
Tuple[List[List[float]], List[float]],
68-
Tuple[List[float], List[float]],
66+
Tuple[List[List[float]], List[float]], # XXX: this indicates a bug!
6967
]:
7068
if not tell_pending:
7169
raise NotImplementedError(

0 commit comments

Comments
 (0)