Skip to content

Commit

Permalink
fix: changes a positional to named arg (#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 committed Jun 15, 2020
1 parent 629c0a8 commit 0221d37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion video/cloud-client/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 0221d37

Please sign in to comment.