Skip to content

Commit 939aea0

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent e516585 commit 939aea0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

optimas/generators/ax/developer/multitask.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -267,14 +267,14 @@ def _check_inputs(
267267
"The number of low-fidelity trials must be larger than or equal "
268268
"to the number of high-fidelity trials"
269269
)
270-
270+
271271
def suggest(self, num_points: Optional[int]) -> List[dict]:
272272
"""Request the next set of points to evaluate."""
273273
points = []
274-
for _ in range(num_points):
274+
for _ in range(num_points):
275275
next_trial = self._get_next_trial_arm()
276276
if next_trial is not None:
277-
arm, trial_type, trial_index = next_trial
277+
arm, trial_type, trial_index = next_trial
278278
point = {
279279
var.name: arm.parameters.get(var.name)
280280
for var in self._varying_parameters

0 commit comments

Comments
 (0)