(self, file_code: FileCodes)
| 644 | raise e |
| 645 | |
| 646 | async def delete_file(self, file_code: FileCodes): |
| 647 | await asyncio.to_thread(self._delete, await file_code.get_file_path()) |
| 648 | |
| 649 | def _convert_link_to_download_link(self, link): |
| 650 | p1 = re.search(r"https://(.+)\.sharepoint\.com", link).group(1) |
nothing calls this directly
no test coverage detected