From 58205033099433ce78ad7ea833e2f567091ba05e Mon Sep 17 00:00:00 2001 From: "gcf-owl-bot[bot]" <78513119+gcf-owl-bot[bot]@users.noreply.github.com> Date: Wed, 10 Nov 2021 20:53:12 -0500 Subject: [PATCH] chore(python): run blacken session for all directories with a noxfile (#247) Source-Link: https://github.com/googleapis/synthtool/commit/bc0de6ee2489da6fb8eafd021a8c58b5cc30c947 Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:39ad8c0570e4f5d2d3124a509de4fe975e799e2b97e0f58aed88f8880d5a8b60 Co-authored-by: Owl Bot --- .../.github/.OwlBot.lock.yaml | 2 +- .../samples/analyze/beta_snippets.py | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/packages/google-cloud-videointelligence/.github/.OwlBot.lock.yaml b/packages/google-cloud-videointelligence/.github/.OwlBot.lock.yaml index 108063d4dee4..63bf76ea6567 100644 --- a/packages/google-cloud-videointelligence/.github/.OwlBot.lock.yaml +++ b/packages/google-cloud-videointelligence/.github/.OwlBot.lock.yaml @@ -1,3 +1,3 @@ docker: image: gcr.io/cloud-devrel-public-resources/owlbot-python:latest - digest: sha256:4ee57a76a176ede9087c14330c625a71553cf9c72828b2c0ca12f5338171ba60 + digest: sha256:39ad8c0570e4f5d2d3124a509de4fe975e799e2b97e0f58aed88f8880d5a8b60 diff --git a/packages/google-cloud-videointelligence/samples/analyze/beta_snippets.py b/packages/google-cloud-videointelligence/samples/analyze/beta_snippets.py index 7208d29072f2..ac78f355433c 100644 --- a/packages/google-cloud-videointelligence/samples/analyze/beta_snippets.py +++ b/packages/google-cloud-videointelligence/samples/analyze/beta_snippets.py @@ -876,14 +876,16 @@ def stream_generator(): video_streaming_automl_classification_parser.add_argument("model_id") video_streaming_automl_object_tracking_parser = subparsers.add_parser( - "streaming-automl-object-tracking", help=streaming_automl_object_tracking.__doc__ + "streaming-automl-object-tracking", + help=streaming_automl_object_tracking.__doc__, ) video_streaming_automl_object_tracking_parser.add_argument("path") video_streaming_automl_object_tracking_parser.add_argument("project_id") video_streaming_automl_object_tracking_parser.add_argument("model_id") video_streaming_automl_action_recognition_parser = subparsers.add_parser( - "streaming-automl-action-recognition", help=streaming_automl_action_recognition.__doc__ + "streaming-automl-action-recognition", + help=streaming_automl_action_recognition.__doc__, ) video_streaming_automl_action_recognition_parser.add_argument("path") video_streaming_automl_action_recognition_parser.add_argument("project_id")