(node: ast.Module)
| 28 | |
| 29 | |
| 30 | def _find_names(node: ast.Module) -> Iterator[str]: |
| 31 | for _node in ast.walk(node): |
| 32 | if isinstance(_node, ast.Name): |
| 33 | yield _node.id |
| 34 | elif isinstance(_node, ast.Attribute): |
| 35 | yield _node.attr |
| 36 | |
| 37 | |
| 38 | def _is_fixture(node: ast.expr) -> bool: |