Clear all abbreviations from the glossary.
(self)
| 60 | self.abbrs.update(self.glossary) |
| 61 | |
| 62 | def reset_glossary(self): |
| 63 | """ Clear all abbreviations from the glossary. """ |
| 64 | self.glossary.clear() |
| 65 | |
| 66 | def load_glossary(self, dictionary: dict[str, str]): |
| 67 | """Adds `dictionary` to our glossary. Any abbreviations that already exist will be overwritten.""" |
nothing calls this directly
no outgoing calls
no test coverage detected