Skip to content

Commit

Permalink
fix: changes a positional to named arg [(#4092)](GoogleCloudPlatform/…
Browse files Browse the repository at this point in the history
…python-docs-samples#4092)

[Another PR](GoogleCloudPlatform/python-docs-samples#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 8f33c31 commit a1af9a6
Showing 1 changed file with 1 addition and 1 deletion.
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 a1af9a6

Please sign in to comment.