(path: Path)
| 236 | return x.split("::", maxsplit=1)[0] |
| 237 | |
| 238 | def get_dir_from_path(path: Path) -> Path: |
| 239 | if path.is_dir(): |
| 240 | return path |
| 241 | return path.parent |
| 242 | |
| 243 | # These look like paths but may not exist |
| 244 | possible_paths = ( |
no outgoing calls
no test coverage detected