Gets directory path where lazy files are stored.
(path)
| 25 | |
| 26 | |
| 27 | def get_lazy_path(path): |
| 28 | """ |
| 29 | Gets directory path where lazy files are stored. |
| 30 | """ |
| 31 | return os.path.splitext(path)[0] + '.lazy' |
| 32 | |
| 33 | |
| 34 | def exists_lazy(path, data_type='data'): |
no outgoing calls
no test coverage detected