We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16b37ee commit e6f1dc3Copy full SHA for e6f1dc3
commitizen/cz/__init__.py
@@ -23,7 +23,7 @@ def discover_plugins(path: Iterable[str] = None) -> Dict[str, Type[BaseCommitize
23
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
+ plugins[name] = importlib.import_module(name).discover_this # type: ignore
27
except AttributeError as e:
28
warnings.warn(UserWarning(e.args[0]))
29
continue
0 commit comments