Skip to content

Commit a7934b8

Browse files
committed
fix bug in tests
1 parent 0d663f5 commit a7934b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoPyTorch/utils/results_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ def get_ensemble_merged_data(self) -> Dict[str, np.ndarray]:
558558
cur, timestep_size, sign = 0, self.cum_times.size, self.metric._sign
559559
key_train, key_test = f'ensemble::train::{self.metric.name}', f'ensemble::test::{self.metric.name}'
560560

561-
all_test_perfs_null = all([[perf is None for perf in test_scores]])
561+
all_test_perfs_null = all([perf is None for perf in test_scores])
562562

563563
train_perfs = np.full_like(self.cum_times, self.metric._worst_possible_result)
564564
test_perfs = np.full_like(self.cum_times, self.metric._worst_possible_result)

0 commit comments

Comments
 (0)