Skip to content

Commit cb07509

Browse files
authored
fix: changes a positional to named arg [(#4092)](GoogleCloudPlatform/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`
1 parent 5385fa7 commit cb07509

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples/analyze/beta_snippets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def speech_transcription(input_uri):
6262
)
6363

6464
operation = video_client.annotate_video(
65-
input_uri, features=features, video_context=video_context
65+
input_uri=input_uri, features=features, video_context=video_context
6666
)
6767

6868
print("\nProcessing video for speech transcription.")

0 commit comments

Comments
 (0)