Skip to content

Commit

Permalink
chore: code format
Browse files Browse the repository at this point in the history
  • Loading branch information
dpereira authored and mauricioabreu committed Apr 1, 2024
1 parent d1f5c01 commit 13d8414
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions golings/cmd/print.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ func PrintList(infoFile string) {
func RunNextExercise(infoFile string) {
ClearScreen()

progress, done, total, err:= exercises.Progress(infoFile)
progress, done, total, err := exercises.Progress(infoFile)
if err != nil {
fmt.Fprintln(os.Stderr, err)
} else {
color.Blue("Progress: %d/%d (%.2f%%)\n\n", done, total, progress * 100)
color.Blue("Progress: %d/%d (%.2f%%)\n\n", done, total, progress*100)
}

exercise, err := exercises.NextPending(infoFile)
Expand Down

0 comments on commit 13d8414

Please sign in to comment.