(self, exc_type, exc_val, exc_tb)
| 255 | return self._created_glossary |
| 256 | |
| 257 | def __exit__(self, exc_type, exc_val, exc_tb): |
| 258 | try: |
| 259 | self._translator.delete_glossary( |
| 260 | self._created_glossary.glossary_id |
| 261 | ) |
| 262 | except deepl.DeepLException: |
| 263 | pass |
| 264 | |
| 265 | |
| 266 | class ManagedMultilingualGlossary: |
nothing calls this directly
no test coverage detected