Skip to content

Commit 0498938

Browse files
committed
style: format code
1 parent 05aac74 commit 0498938

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

commitizen/cz/__init__.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
import importlib
22
import logging
33
import pkgutil
4-
54
from typing import Dict, Type
5+
66
from commitizen.cz.base import BaseCommitizen
77
from commitizen.cz.conventional_commits import ConventionalCommitsCz
88
from commitizen.cz.customize import CustomizeCommitsCz
99
from commitizen.cz.jira import JiraSmartCz
1010

1111
logger = logging.getLogger(__name__)
1212

13+
1314
def discover_plugins():
1415
plugins = {}
1516
for finder, name, ispkg in pkgutil.iter_modules():
@@ -21,6 +22,7 @@ def discover_plugins():
2122
continue
2223
return plugins
2324

25+
2426
registry: Dict[str, Type[BaseCommitizen]] = {
2527
"cz_conventional_commits": ConventionalCommitsCz,
2628
"cz_jira": JiraSmartCz,

0 commit comments

Comments
 (0)