Skip to content

Commit

Permalink
Restore new line after table output (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
joaopalet authored Nov 21, 2023
1 parent d740658 commit 48e5e33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/pkg/tables/tables.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ func (t *Table) Render(cmd *cobra.Command) {
t.table.Style().Options.SeparateRows = false
t.table.Style().Options.SeparateColumns = true
t.table.Style().Options.SeparateHeader = true
cmd.Printf("\n%s\n", t.table.Render())
cmd.Printf("\n%s\n\n", t.table.Render())
}

0 comments on commit 48e5e33

Please sign in to comment.