Skip to content

Commit 545baae

Browse files
authored
fix progress when completed (#1239)
1 parent bbade43 commit 545baae

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sqlmesh/core/console.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1190,7 +1190,7 @@ def update_snapshot_evaluation_progress(self, snapshot: Snapshot, num_batches: i
11901190
[
11911191
s
11921192
for s, total in self.evaluation_batches.items()
1193-
if self.evaluation_batch_progress[s.name][1] == total
1193+
if self.evaluation_batch_progress.get(s.name, (None, -1))[1] == total
11941194
]
11951195
)
11961196
total = len(self.evaluation_batch_progress)

0 commit comments

Comments
 (0)