Fix false positives (#6544)

This commit is contained in:
Nicolas Mowen 2023-05-19 13:26:19 -06:00 committed by GitHub
parent fec1dd3f46
commit 4940826011
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -295,7 +295,7 @@ def false_positive(id):
return make_response(jsonify({"success": False, "message": message}), 404)
# events from before the conversion to relative dimensions cant include annotations
if any(d > 1 for d in event.box):
if event.data.get("box") is None:
message = f"Events prior to 0.13 cannot be submitted as false positives"
logger.error(message)
return make_response(jsonify({"success": False, "message": message}), 400)