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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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