(self,
value, # type: bytes
flags # type: int
)
| 86 | |
| 87 | @abstractmethod |
| 88 | def decode_value(self, |
| 89 | value, # type: bytes |
| 90 | flags # type: int |
| 91 | ) -> Any: |
| 92 | raise NotImplementedError() |
| 93 | |
| 94 | @classmethod |
| 95 | def __subclasshook__(cls, subclass): |