(name: str)
| 85 | colors = _colorize.get_colors() |
| 86 | |
| 87 | def check_for_name(name: str) -> None: |
| 88 | documented = name in names |
| 89 | if documented and (name in IGNORED): |
| 90 | documented_ignored.append(name) |
| 91 | elif not documented and (name not in IGNORED): |
| 92 | undocumented.append(name) |
| 93 | |
| 94 | for function in SIMPLE_FUNCTION_REGEX.finditer(text): |
| 95 | name = function.group(2) |
no test coverage detected
searching dependent graphs…