Return a default _Chunk instance that only knows its chunk type.
(cls, chunk_type, stream_rdr, offset)
| 188 | |
| 189 | @classmethod |
| 190 | def from_offset(cls, chunk_type, stream_rdr, offset): |
| 191 | """Return a default _Chunk instance that only knows its chunk type.""" |
| 192 | return cls(chunk_type) |
| 193 | |
| 194 | @property |
| 195 | def type_name(self): |
no outgoing calls