(paths: str | Path | Sequence[str | Path])
| 103 | |
| 104 | |
| 105 | def _coerce_input_paths(paths: str | Path | Sequence[str | Path]) -> list[Path]: |
| 106 | if isinstance(paths, (str, Path)): |
| 107 | return [Path(paths)] |
| 108 | return [Path(item) for item in paths] |
| 109 | |
| 110 | |
| 111 | def _iter_jsonl_files(path: Path) -> Iterator[Path]: |
no outgoing calls
no test coverage detected