Update black to 23.1.0 (#87188)

This commit is contained in:
Franck Nijhof
2023-02-02 18:35:24 +01:00
committed by GitHub
parent f7666239ff
commit 5e81d28116
312 changed files with 299 additions and 475 deletions

View File

@@ -189,7 +189,7 @@ class OpenCVImageProcessor(ImageProcessingEntity):
)
regions = []
# pylint: disable=invalid-name
for (x, y, w, h) in detections:
for x, y, w, h in detections:
regions.append((int(x), int(y), int(w), int(h)))
total_matches += 1