Skip to content

Commit

Permalink
cmd: minor formatting fix (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
matslina authored Jan 3, 2024
1 parent 10b0daa commit ef69b50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/departures.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func departures(cmd *cobra.Command, args []string) error {
for _, departure := range departures {
delay := ""
if departure.Delay != 0 {
delay = fmt.Sprintf("(%s)", departure.Delay)
delay = fmt.Sprintf(" (%s)", departure.Delay)
}
fmt.Printf(
"%s%s - %s - %s\n",
Expand Down

0 comments on commit ef69b50

Please sign in to comment.