(self, file_code: FileCodes)
| 136 | save_path.unlink() |
| 137 | |
| 138 | async def get_file_url(self, file_code: FileCodes): |
| 139 | return await get_file_url(file_code.code) |
| 140 | |
| 141 | async def get_file_response(self, file_code: FileCodes): |
| 142 | file_path = self.root_path / await file_code.get_file_path() |
nothing calls this directly
no test coverage detected