We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ccd57e commit 85d0ed1Copy full SHA for 85d0ed1
sqlmesh/core/console.py
@@ -1060,6 +1060,7 @@ def update_snapshot_evaluation_progress(
1060
"""Update the snapshot evaluation progress."""
1061
if (
1062
self.evaluation_total_progress
1063
+ and self.evaluation_total_task is not None
1064
and self.evaluation_model_progress
1065
and self.evaluation_progress_live
1066
):
@@ -1102,7 +1103,7 @@ def update_snapshot_evaluation_progress(
1102
1103
self.evaluation_progress_live.console.print(msg)
1104
1105
self.evaluation_total_progress.update(
- self.evaluation_total_task or TaskID(0), refresh=True, advance=1
1106
+ self.evaluation_total_task, refresh=True, advance=1
1107
)
1108
1109
model_task_id = self.evaluation_model_tasks[snapshot.name]
0 commit comments