Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/roboflow/inference into main
Browse files Browse the repository at this point in the history
  • Loading branch information
paulguerrie committed Feb 13, 2024
2 parents 721e7fd + ed6102a commit 7cd5352
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inference/core/entities/requests/inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,5 +229,5 @@ def request_from_type(model_type, request_dict):
request = ObjectDetectionInferenceRequest(**request_dict)
else:
raise ValueError(f"Uknown task type {model_type}")
request.id = request_dict["id"]
request.id = request_dict.get("id")
return request

0 comments on commit 7cd5352

Please sign in to comment.