Skip to content

Commit

Permalink
[!163][SUBTITLING] Fix help print in subtitle compliance script
Browse files Browse the repository at this point in the history
# Why is the change needed?

The help command for the subtitle compliance script does not work.

# What changes does the patch introduce?

Escapes the characters so that the help properly works.

# How was this patch tested?

manual run
  • Loading branch information
mgaido91 committed Feb 8, 2024
1 parent a0ed786 commit 49e5371
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/speech_to_text/scripts/subtitle_compliance.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def main(args):
help='floating point width.')
parser.add_argument(
'--confidence-intervals', '-ci', default=False, action='store_true',
help='confidence intervals with 95% confidence level using bootstrap resampling '
help='confidence intervals with 95%% confidence level using bootstrap resampling '
f'({_BOOTSTRAP_NUM_SAMPLES} samples). The number of samples can be customized by '
'setting the environment variable BOOTSTRAP_NUM_SAMPLES.')
parser.add_argument(
Expand Down

0 comments on commit 49e5371

Please sign in to comment.