@@ -44,7 +44,7 @@ public async Task PrintProgress(OrganizedModules organizedModules, CancellationT
4444 _totalModuleCount = organizedModules . RunnableModules . Count ;
4545
4646 await AnsiConsole . Progress ( )
47- . Columns ( new TaskDescriptionColumn ( ) , new ProgressBarColumn ( ) , new PercentageColumn ( ) ,
47+ . Columns ( new TaskDescriptionColumn ( ) , new ProgressBarColumn ( ) , new PercentageColumn ( ) ,
4848 new ElapsedTimeColumn ( ) , new RemainingTimeColumn ( ) , new SpinnerColumn ( ) )
4949 . StartAsync ( async progressContext =>
5050 {
@@ -161,7 +161,7 @@ public ValueTask Handle(ModuleSkippedNotification notification, CancellationToke
161161 lock ( _progressLock )
162162 {
163163 var moduleName = notification . Module . GetType ( ) . Name ;
164-
164+
165165 if ( _progressTasks . TryGetValue ( notification . Module , out var progressTask ) )
166166 {
167167 progressTask . Description = $ "[yellow][[Skipped]] { moduleName } [/]";
@@ -204,7 +204,7 @@ public ValueTask Handle(SubModuleCreatedNotification notification, CancellationT
204204 return ValueTask . CompletedTask ;
205205 }
206206
207- var progressTask = _progressContext . AddTaskAfter ( $ "- { notification . SubModule . Name } ",
207+ var progressTask = _progressContext . AddTaskAfter ( $ "- { notification . SubModule . Name } ",
208208 new ProgressTaskSettings { AutoStart = true } , parentTask ) ;
209209
210210 _subModuleProgressTasks [ notification . SubModule ] = progressTask ;
0 commit comments