Skip to content

Commit

Permalink
fix: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Telemaco019 committed Aug 24, 2024
1 parent 9305154 commit f532a54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/cmd/list_duplicated.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func listDuplicatedResources(client core.Client, namespace string) error {
return err
}
if len(duplicatedObjs) == 0 {
fmt.Println(fmt.Sprintf("No duplicated resources found in namespace %q", namespace))
fmt.Printf("No duplicated resources found in namespace %q\n", namespace)
return nil
}
headerStyle := lipgloss.NewStyle().Foreground(lipgloss.Color("#56bc8b")).Bold(true).Padding(0, 1)
Expand All @@ -57,7 +57,7 @@ func listDuplicatedResources(client core.Client, namespace string) error {
utils.FormatAge(obj.CreationTimestamp),
)
}
fmt.Printf(t.Render() + "\n")
fmt.Print(t.Render() + "\n")
return nil

}
Expand Down

0 comments on commit f532a54

Please sign in to comment.