Join given locations as an OS path
(*args)
| 20 | |
| 21 | |
| 22 | def localize_path(*args): |
| 23 | """Join given locations as an OS path""" |
| 24 | |
| 25 | if WORKSPACE["path"]: |
| 26 | path = join_path(WORKSPACE["path"], *args) |
| 27 | return path |
| 28 | |
| 29 | else: |
| 30 | return None |
| 31 | |
| 32 | |
| 33 | class Settings: |
no outgoing calls
no test coverage detected