Fix each of the paths of the list.
(paths, separator="\\")
| 188 | |
| 189 | |
| 190 | def _FixPaths(paths, separator="\\"): |
| 191 | """Fix each of the paths of the list.""" |
| 192 | return [_FixPath(i, separator) for i in paths] |
| 193 | |
| 194 | |
| 195 | def _ConvertSourcesToFilterHierarchy( |
no test coverage detected