Commit bf48efd5 authored by Tom Niget's avatar Tom Niget

Add typing to ignored modules list

parent 21d839db
......@@ -17,7 +17,7 @@ class ModuleVisitor(BlockVisitor):
includes: list[str] = field(default_factory=list)
def visit_Import(self, node: ast.Import) -> Iterable[str]:
for alias in node.names:
if alias.name == "typon":
if alias.name in ("typon", "typing"):
yield ""
else:
yield from self.import_module(alias.name)
......@@ -28,7 +28,7 @@ class ModuleVisitor(BlockVisitor):
yield ""
def visit_ImportFrom(self, node: ast.ImportFrom) -> Iterable[str]:
if node.module == "typon":
if node.module in ("typon", "typing"):
yield ""
else:
yield from self.import_module(node.module)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment