aboutsummaryrefslogtreecommitdiff
path: root/owlbot.py
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2021-06-16 13:45:41 -0400
committerGitHub <noreply@github.com>2021-06-16 13:45:41 -0400
commitfbf447cf25468dfa7e99283ce66a9c10daacc488 (patch)
tree3f6725ebb6ecf81dc502cdf71ec2da174076e32a /owlbot.py
parent11032cf08ecc16dd252a6cda8b33b0b28ec4f4ba (diff)
downloadpython-api-core-fbf447cf25468dfa7e99283ce66a9c10daacc488.tar.gz
chore: blacken (#206)
Also, fix 2.7 tests broken by release of 'googleapis-common-protos 1.53.0', which dropped Python 2.7 support. Closes #169
Diffstat (limited to 'owlbot.py')
-rw-r--r--owlbot.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/owlbot.py b/owlbot.py
index 2a525c8..5c590e4 100644
--- a/owlbot.py
+++ b/owlbot.py
@@ -14,8 +14,6 @@
"""This script is used to synthesize generated parts of this library."""
-import re
-
import synthtool as s
from synthtool import gcp
@@ -38,3 +36,5 @@ s.replace(
.pytype
""",
)
+
+s.shell.run(["nox", "-s", "blacken"], hide_output=False)