Gets the path to the cache file. Returns: path (str): The path to the cache folder
()
| 5 | from config import ROOT_DIR |
| 6 | |
| 7 | def get_cache_path() -> str: |
| 8 | """ |
| 9 | Gets the path to the cache file. |
| 10 | |
| 11 | Returns: |
| 12 | path (str): The path to the cache folder |
| 13 | """ |
| 14 | return os.path.join(ROOT_DIR, '.mp') |
| 15 | |
| 16 | def get_afm_cache_path() -> str: |
| 17 | """ |
no outgoing calls
no test coverage detected