From 62b13bb6fa858913038250e72e366a43e55a1e0c Mon Sep 17 00:00:00 2001 From: Christian Schlotter Date: Fri, 25 Aug 2023 10:53:38 +0200 Subject: [PATCH] style(commit.py): fix style --- commitizen/commands/commit.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/commitizen/commands/commit.py b/commitizen/commands/commit.py index 286777795..913526f89 100644 --- a/commitizen/commands/commit.py +++ b/commitizen/commands/commit.py @@ -89,7 +89,9 @@ def __call__(self): if dry_run: raise DryRunExit() - signoff: bool = self.arguments.get("signoff") or self.config.settings["always_signoff"] + signoff: bool = ( + self.arguments.get("signoff") or self.config.settings["always_signoff"] + ) if signoff: c = git.commit(m, "-s")