style: remove unused comment

This commit is contained in:
Simon Cornet 2025-08-28 10:34:22 +02:00
commit 157447716b

View file

@ -107,7 +107,7 @@ func printGeneralErrors(stats *GitStats) {
func hasErrors(stats *GitStats) bool { func hasErrors(stats *GitStats) bool {
return len(stats.pullErrorMsgUnstaged) > 0 || return len(stats.pullErrorMsgUnstaged) > 0 ||
len(stats.pullErrorMsgUncommitted) > 0 || len(stats.pullErrorMsgUncommitted) > 0 ||
len(stats.generalErrors) > 0 // Add this len(stats.generalErrors) > 0
} }
// print detailed summary // print detailed summary