Skip to content

Commit

Permalink
fix landmark sample (#1424)
Browse files Browse the repository at this point in the history
  • Loading branch information
dizcology authored and andrewsg committed Mar 27, 2018
1 parent 93124e0 commit 4c47af9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vision/cloud-client/detect/detect.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down

0 comments on commit 4c47af9

Please sign in to comment.