Delete specified file from azure cache directory :param file_name: :return:
(file_name)
| 824 | |
| 825 | |
| 826 | def delete_azure_cache(file_name): |
| 827 | """ |
| 828 | Delete specified file from azure cache directory |
| 829 | :param file_name: |
| 830 | :return: |
| 831 | """ |
| 832 | file = config.AZURE_CREDENTIAL_CACHE_DIR + '/' + file_name |
| 833 | # Delete cache file if exists |
| 834 | if os.path.exists(file): |
| 835 | os.remove(file) |
no test coverage detected