diff --git a/pkg/graphics/bitmap.go b/pkg/graphics/bitmap.go index 7a9e4c9..bc0faf1 100644 --- a/pkg/graphics/bitmap.go +++ b/pkg/graphics/bitmap.go @@ -29,8 +29,6 @@ func (m *MonochromeBitmap) SetPixel(x, y int, black bool) { return } - // TODO: Make sure linter suppression is safe here - bytesPerRow := (m.Width + 7) / 8 byteIndex := y*bytesPerRow + x/8 bitIndex := uint(7 - (x % 8)) //nolint:gosec