(component: str)
| 139 | |
| 140 | |
| 141 | def _is_windows_drive_component(component: str) -> bool: |
| 142 | return len(component) >= 2 and component[0].isalpha() and component[1] == ":" |
| 143 | |
| 144 | |
| 145 | def _validate_workspace_path(workspace_path: str) -> str: |
no outgoing calls
no test coverage detected