Override to perform codec specific initialization :param args: Tuple of arg items from the tile entry :returns: None
(self, args: tuple[Any, ...])
| 761 | self.init(args) |
| 762 | |
| 763 | def init(self, args: tuple[Any, ...]) -> None: |
| 764 | """ |
| 765 | Override to perform codec specific initialization |
| 766 | |
| 767 | :param args: Tuple of arg items from the tile entry |
| 768 | :returns: None |
| 769 | """ |
| 770 | self.args = args |
| 771 | |
| 772 | def cleanup(self) -> None: |
| 773 | """ |