We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f9b441 commit efbc883Copy full SHA for efbc883
samples/snippets/detect/detect.py
@@ -155,8 +155,8 @@ def detect_landmarks(path):
155
print(landmark.description)
156
for location in landmark.locations:
157
lat_lng = location.lat_lng
158
- print('Latitude'.format(lat_lng.latitude))
159
- print('Longitude'.format(lat_lng.longitude))
+ print('Latitude {}'.format(lat_lng.latitude))
+ print('Longitude {}'.format(lat_lng.longitude))
160
# [END migration_landmark_detection]
161
# [END def_detect_landmarks]
162
0 commit comments