From ffa53ff369a4c9d7a62410869c02a8a8043d77c1 Mon Sep 17 00:00:00 2001 From: Christopher Wilcox Date: Thu, 29 Nov 2018 13:13:54 -0800 Subject: [PATCH] Run black at end of synth.py (#6698) * Run black at end of synth.py * blacken logging --- packages/google-cloud-speech/synth.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/google-cloud-speech/synth.py b/packages/google-cloud-speech/synth.py index ffc94a7ad780..d28372d6b3a5 100644 --- a/packages/google-cloud-speech/synth.py +++ b/packages/google-cloud-speech/synth.py @@ -60,3 +60,5 @@ # ---------------------------------------------------------------------------- templated_files = common.py_library(unit_cov_level=97, cov_level=100) s.move(templated_files) + +s.shell.run(["nox", "-s", "blacken"], hide_output=False)