QuackatronHQ / Gigarepo

Drop unnecessary use of the blank identifier SCC-S1005
Anti-pattern
Major
1 occurrence in this check
unnecessary assignment to the blank identifier
 9)
10
11func imageIndex(img []image.Image, find image.Image) int {
12	for i, _ := range img {13		if img[i] == find {
14			return i
15		}