Skip to content

Commit 04b860d

Browse files
committed
refactor(commands/commit): use isort
1 parent 94a3510 commit 04b860d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

commitizen/commands/commit.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
import selectors
44
import sys
55
import tempfile
6-
7-
from asyncio import set_event_loop_policy, get_event_loop_policy, DefaultEventLoopPolicy
6+
from asyncio import DefaultEventLoopPolicy, get_event_loop_policy, set_event_loop_policy
87
from io import IOBase
98

109
import questionary
@@ -136,7 +135,7 @@ def __call__(self):
136135
raise DryRunExit()
137136

138137
if commit_msg_file:
139-
default_mesaage = ""
138+
default_message = ""
140139
with open(commit_msg_file) as f:
141140
default_message = f.read()
142141
with open(commit_msg_file, "w") as f:

0 commit comments

Comments
 (0)