Skip to content

Commit

Permalink
Pass max_results through to API - issue #1173
Browse files Browse the repository at this point in the history
  • Loading branch information
engelke authored Dec 7, 2018
1 parent db9cdab commit eb35c20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vision/cloud-client/face_detection/faces.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def detect_face(face_file, max_results=4):
content = face_file.read()
image = types.Image(content=content)

return client.face_detection(image=image).face_annotations
return client.face_detection(image=image, max_results=max_results).face_annotations
# [END vision_face_detection_tutorial_send_request]


Expand Down

0 comments on commit eb35c20

Please sign in to comment.