Skip to content

Commit 4c47af9

Browse files
dizcologyandrewsg
authored andcommitted
fix landmark sample (#1424)
1 parent 93124e0 commit 4c47af9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vision/cloud-client/detect/detect.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,8 @@ def detect_landmarks(path):
155155
print(landmark.description)
156156
for location in landmark.locations:
157157
lat_lng = location.lat_lng
158-
print('Latitude'.format(lat_lng.latitude))
159-
print('Longitude'.format(lat_lng.longitude))
158+
print('Latitude {}'.format(lat_lng.latitude))
159+
print('Longitude {}'.format(lat_lng.longitude))
160160
# [END migration_landmark_detection]
161161
# [END def_detect_landmarks]
162162

0 commit comments

Comments
 (0)