Skip to content

Commit 5107ce2

Browse files
authored
demos/common/python/helpers.py: replace rus C with eng C (#3624)
1 parent 44bf3e8 commit 5107ce2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

demos/common/python/helpers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ def resolution(value):
2121
try:
2222
result = [int(v) for v in value.split('x')]
2323
if len(result) != 2:
24-
raise RuntimeError('Сorrect format of --output_resolution parameter is "width"x"height".')
24+
raise RuntimeError('Correct format of --output_resolution parameter is "width"x"height".')
2525
except ValueError:
26-
raise RuntimeError('Сorrect format of --output_resolution parameter is "width"x"height".')
26+
raise RuntimeError('Correct format of --output_resolution parameter is "width"x"height".')
2727
return result
2828

2929
def log_latency_per_stage(*pipeline_metrics):

0 commit comments

Comments
 (0)