Skip to content

Commit b72aa79

Browse files
committed
type hint fixes for adaptive/learner/skopt_learner.py
1 parent cec1043 commit b72aa79

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)