Remove unnnecessary pylint configs from components [m-r]* (#98924)

This commit is contained in:
Ville Skyttä
2023-08-24 01:56:50 +03:00
committed by GitHub
parent 3b4774d9ed
commit 34b47a2597
51 changed files with 23 additions and 116 deletions

View File

@@ -188,7 +188,6 @@ class OpenCVImageProcessor(ImageProcessingEntity):
cv_image, scaleFactor=scale, minNeighbors=neighbors, minSize=min_size
)
regions = []
# pylint: disable=invalid-name
for x, y, w, h in detections:
regions.append((int(x), int(y), int(w), int(h)))
total_matches += 1