(self, exists: dict[str]={})
| 18 | self.reset(existing_labels) |
| 19 | |
| 20 | def reset(self, exists: dict[str]={}) -> None: |
| 21 | self.identifier = -1 |
| 22 | self.exists = {} if exists is None else exists |
| 23 | |
| 24 | def get_identifier_in_order(self) -> str: |
| 25 | def id2str(id: int) -> str: |