Skip to content

Commit

Permalink
style(commit.py): fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
schlotter authored and Lee-W committed Sep 5, 2023
1 parent 5997ad7 commit 62b13bb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion commitizen/commands/commit.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 62b13bb

Please sign in to comment.