Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: changes positional to named pararameters in Video samples [(#401…
…7)](GoogleCloudPlatform/python-docs-samples#4017) Changes calls to `VideoClient.annotate_video()` so that GCS URIs are provided as named parameters. Example: ``` operation = video_client.annotate_video(path, features=features) ``` Becomes: ``` operation = video_client.annotate_video(input_uri=path, features=features) ```
- Loading branch information