Skip to content

Commit af6aa62

Browse files
committed
style: fix line length formatting in check.py
1 parent 0c4085e commit af6aa62

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

commitizen/commands/check.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ def __init__(self, config: BaseConfig, arguments: CheckArgs, *args: object) -> N
4242
arguments.get("allow_abort", config.settings["allow_abort"])
4343
)
4444

45-
self.max_msg_length = arguments.get("message_length_limit", config.settings.get("message_length_limit", None))
45+
self.max_msg_length = arguments.get(
46+
"message_length_limit", config.settings.get("message_length_limit", None)
47+
)
4648

4749
# we need to distinguish between None and [], which is a valid value
4850
allowed_prefixes = arguments.get("allowed_prefixes")

0 commit comments

Comments
 (0)