(class_definition: str)
| 291 | |
| 292 | def collect_classes(types: set[str]) -> Iterable[tuple[str, str]]: |
| 293 | def get_base_classes(class_definition: str) -> Iterable[str]: |
| 294 | if "(" in class_definition and ")" in class_definition: |
| 295 | for base in class_definition[class_definition.index("(") + 1 : class_definition.index(")")].split(","): |
| 296 | yield base.strip() |
| 297 | else: |
| 298 | return [] |
| 299 | |
| 300 | for filename in sorted(glob.glob("../github/*.py")): |
| 301 | module = f"github.{filename[10:-3]}" |
no test coverage detected
searching dependent graphs…