Skip to content
This repository was archived by the owner on Jul 1, 2024. It is now read-only.

Commit 959d359

Browse files
authored
Releases 1.0.1 - OD example user input fix (#207)
Fix raw_input api call to input in OD sample (#206)
1 parent a81de36 commit 959d359

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/object_detection_sample.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def load_labels(label_file):
164164
"--rename argument is enabled, this will rename the input image or directory of images in your disk.\n Press 'y' to continue.\n Press 'a' to abort.\n Press any other key to proceed without renaming."
165165
)
166166
print(40 * '-')
167-
val = raw_input()
167+
val = input()
168168
if val == 'y':
169169
print(" Renaming has been enabled")
170170
elif val == 'a':

0 commit comments

Comments
 (0)