diff --git a/frigate/data_processing/common/license_plate/mixin.py b/frigate/data_processing/common/license_plate/mixin.py index 462a314f2..f767a5c2f 100644 --- a/frigate/data_processing/common/license_plate/mixin.py +++ b/frigate/data_processing/common/license_plate/mixin.py @@ -1095,7 +1095,7 @@ class LicensePlateProcessingMixin: logger.debug( f"{camera}: Found license plate. Bounding box: {expanded_box.astype(int)}" ) - return tuple(expanded_box.astype(int)) # type: ignore[return-value] + return tuple(int(x) for x in expanded_box) # type: ignore[return-value] else: return None # No detection above the threshold