From 084d95c14527b1e5a09eb5094733b5b797fdca3a 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 --- videointelligence/samples/analyze/beta_snippets.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/videointelligence/samples/analyze/beta_snippets.py b/videointelligence/samples/analyze/beta_snippets.py index 7208d29072f2..ac78f355433c 100644 --- a/videointelligence/samples/analyze/beta_snippets.py +++ b/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")