Skip to content

Commit

Permalink
fix: changes a positional to named arg [(#4092)](#4092)
Browse files Browse the repository at this point in the history
[Another PR](#4041) is blocked due to the use of positional arguments in the Video Intelligence samples. This PR changes one sample to use named arguments.

This fix updates the following region tags:

+ `video_speech_transcription_gcs_beta`
  • Loading branch information
Eric Schmidt authored and danoscarmike committed Sep 30, 2020
1 parent ae7b683 commit 9ca4a79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion videointelligence/samples/analyze/beta_snippets.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def speech_transcription(input_uri):
)

operation = video_client.annotate_video(
input_uri, features=features, video_context=video_context
input_uri=input_uri, features=features, video_context=video_context
)

print("\nProcessing video for speech transcription.")
Expand Down

0 comments on commit 9ca4a79

Please sign in to comment.