Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 4c47af9

Browse filesBrowse files
dizcologyandrewsg
authored andcommitted
fix landmark sample (GoogleCloudPlatform#1424)
1 parent 93124e0 commit 4c47af9
Copy full SHA for 4c47af9

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed

‎vision/cloud-client/detect/detect.py

Copy file name to clipboardExpand all lines: vision/cloud-client/detect/detect.py
+2-2Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.