diff --git a/vision/cloud-client/detect/detect.py b/vision/cloud-client/detect/detect.py index 1e89ea9845c..5b77ffa9573 100644 --- a/vision/cloud-client/detect/detect.py +++ b/vision/cloud-client/detect/detect.py @@ -155,8 +155,8 @@ def detect_landmarks(path): print(landmark.description) for location in landmark.locations: lat_lng = location.lat_lng - print('Latitude'.format(lat_lng.latitude)) - print('Longitude'.format(lat_lng.longitude)) + print('Latitude {}'.format(lat_lng.latitude)) + print('Longitude {}'.format(lat_lng.longitude)) # [END migration_landmark_detection] # [END def_detect_landmarks]