(self, file_id: int)
| 80 | return self._file_storage |
| 81 | |
| 82 | def _file_metadata_key(self, file_id: int) -> str: |
| 83 | return f"{self.FILE_METADATA_KEY_PREFIX}{file_id}" |
| 84 | |
| 85 | async def _delete_file_code(self, file_code: FileCodes): |
| 86 | if file_code.text is None: |
no outgoing calls
no test coverage detected