Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion sqlmesh/core/console.py
Original file line number Diff line number Diff line change
Expand Up @@ -1060,6 +1060,7 @@ def update_snapshot_evaluation_progress(
"""Update the snapshot evaluation progress."""
if (
self.evaluation_total_progress
and self.evaluation_total_task is not None
and self.evaluation_model_progress
and self.evaluation_progress_live
):
Expand Down Expand Up @@ -1102,7 +1103,7 @@ def update_snapshot_evaluation_progress(
self.evaluation_progress_live.console.print(msg)

self.evaluation_total_progress.update(
self.evaluation_total_task or TaskID(0), refresh=True, advance=1
self.evaluation_total_task, refresh=True, advance=1
)

model_task_id = self.evaluation_model_tasks[snapshot.name]
Expand Down
Loading