(path: Path)
| 1465 | |
| 1466 | |
| 1467 | def is_probable_paper_folder(path: Path) -> bool: |
| 1468 | if not path.is_dir(): |
| 1469 | return False |
| 1470 | marker = path / f"{path.name}.md" |
| 1471 | return marker.exists() |
| 1472 | |
| 1473 | |
| 1474 | def existing_domain_dirs(config: dict[str, Any]) -> list[str]: |
no outgoing calls
no test coverage detected