We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 354f9ea commit 3decc6cCopy full SHA for 3decc6c
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