()
| 66 | |
| 67 | |
| 68 | def LMUDataRoot(): |
| 69 | if 'LMUData' in os.environ and osp.exists(os.environ['LMUData']): |
| 70 | return os.environ['LMUData'] |
| 71 | home = osp.expanduser('~') |
| 72 | root = osp.join(home, 'LMUData') |
| 73 | os.makedirs(root, exist_ok=True) |
| 74 | return root |
| 75 | |
| 76 | |
| 77 | def HFCacheRoot(): |
no outgoing calls
no test coverage detected