Skip to content

Commit e6f1dc3

Browse files
committed
build: Ignore type checking
1 parent 16b37ee commit e6f1dc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commitizen/cz/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def discover_plugins(path: Iterable[str] = None) -> Dict[str, Type[BaseCommitize
2323
for finder, name, ispkg in pkgutil.iter_modules(path):
2424
try:
2525
if name.startswith("cz_"):
26-
plugins[name] = importlib.import_module(name).discover_this
26+
plugins[name] = importlib.import_module(name).discover_this # type: ignore
2727
except AttributeError as e:
2828
warnings.warn(UserWarning(e.args[0]))
2929
continue

0 commit comments

Comments
 (0)