def visit_Module(self, node):
if sys.version_info >= (3, 7):
docstring = ast.get_docstring(node, clean=False)
for t in self.check_str(docstring):
yield t
for t in self.generic_visit(node):
yield t