We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 713ce19 commit 48e29e5Copy full SHA for 48e29e5
commitizen/cz/__init__.py
@@ -20,7 +20,7 @@ def discover_plugins(path: Iterable[str] = None) -> Dict[str, Type[BaseCommitize
20
Dict[str, Type[BaseCommitizen]]: Registry with found plugins
21
"""
22
plugins = {}
23
- for finder, name, ispkg in pkgutil.iter_modules(path):
+ for _finder, name, _ispkg in pkgutil.iter_modules(path):
24
try:
25
if name.startswith("cz_"):
26
plugins[name] = importlib.import_module(name).discover_this
0 commit comments