Skip to content

Commit efbc883

Browse files
dizcologyandrewsg
authored andcommitted
fix landmark sample [(#1424)](GoogleCloudPlatform/python-docs-samples#1424)
1 parent 7f9b441 commit efbc883

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

samples/snippets/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)