validation prints immediatly in case of single job
Validate Operations / validate-operations (push) Has been cancelled

This commit is contained in:
NiccoloN
2026-07-27 12:23:27 +02:00
parent e28a2b824d
commit 45288635b3
3 changed files with 57 additions and 50 deletions
+2 -2
View File
@@ -165,9 +165,9 @@ class ProgressReporter:
if self.enabled:
self._clear()
if color:
print(color + message + Style.RESET_ALL)
print(color + message + Style.RESET_ALL, flush=True)
else:
print(message)
print(message, flush=True)
self._render()
def set_stage(self, model_index, model_total, model_name, stage_name):