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")