From e4a08534b17b3f7ad7181e6bc1b2814695e45277 Mon Sep 17 00:00:00 2001 From: NateScarlet Date: Sat, 6 Nov 2021 00:23:52 +0800 Subject: [PATCH] style: fix issue reported by black --- update.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/update.py b/update.py index 43036c1..2c6a8aa 100755 --- a/update.py +++ b/update.py @@ -130,7 +130,16 @@ def main(): print("Updated repository data, skip release since not specified `--release`") return - subprocess.run(["hub", "commit", "-m", "chore(release): update holiday data", "-m" "[skip ci]"], check=True) + subprocess.run( + [ + "hub", + "commit", + "-m", + "chore(release): update holiday data", + "-m" "[skip ci]", + ], + check=True, + ) subprocess.run(["hub", "push"], check=True) tag = now.strftime("%Y.%m.%d")