Skip to content

Commit

Permalink
Delint
Browse files Browse the repository at this point in the history
  • Loading branch information
rk1274 committed Oct 31, 2024
1 parent 2dad259 commit 19a7f61
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cmd/where.go
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ func getSupergroups(c *gas.ClientCLI) (map[string][]string, error) {
return areas, nil
}

func stringToAge(ageStr string) summary.DirGUTAge {
func stringToAge(ageStr string) summary.DirGUTAge { //nolint:funlen,gocyclo,cyclop
switch ageStr {
case "A1M":
return summary.DGUTAgeA1M
Expand Down Expand Up @@ -331,6 +331,7 @@ func stringToAge(ageStr string) summary.DirGUTAge {
}

die("invalid age")

return summary.DGUTAgeAll
}

Expand Down Expand Up @@ -496,5 +497,5 @@ func printSkipped(n int) {
return
}

warn(fmt.Sprintf("(%d results not displayed as smaller than --size or younger than --access)", n))
warn("(%d results not displayed as smaller than --size or younger than --access)", n)
}

0 comments on commit 19a7f61

Please sign in to comment.