(path_value: str)
| 150 | |
| 151 | |
| 152 | def split_path_entries(path_value: str) -> list[str]: |
| 153 | return [entry for entry in path_value.split(os.pathsep) if entry] |
| 154 | |
| 155 | |
| 156 | def split_words(value: str) -> list[str]: |
no outgoing calls
no test coverage detected