From 2cb87b28cbfbe167916bcdf27a96d3638269d090 Mon Sep 17 00:00:00 2001 From: Eric Schmidt Date: Mon, 15 Jun 2020 10:22:56 -0700 Subject: [PATCH] fix: changes a positional to named arg --- video/cloud-client/analyze/beta_snippets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/video/cloud-client/analyze/beta_snippets.py b/video/cloud-client/analyze/beta_snippets.py index 05f3741e1c5..33d221ce4b9 100644 --- a/video/cloud-client/analyze/beta_snippets.py +++ b/video/cloud-client/analyze/beta_snippets.py @@ -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.")