Skip to content

Commit 62b13bb

Browse files
schlotterLee-W
authored andcommitted
style(commit.py): fix style
1 parent 5997ad7 commit 62b13bb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

commitizen/commands/commit.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,9 @@ def __call__(self):
8989
if dry_run:
9090
raise DryRunExit()
9191

92-
signoff: bool = self.arguments.get("signoff") or self.config.settings["always_signoff"]
92+
signoff: bool = (
93+
self.arguments.get("signoff") or self.config.settings["always_signoff"]
94+
)
9395

9496
if signoff:
9597
c = git.commit(m, "-s")

0 commit comments

Comments
 (0)