(cls, buf: ReadBuffer)
| 5365 | |
| 5366 | @classmethod |
| 5367 | def read(cls, buf: ReadBuffer) -> SccsDataMessage: |
| 5368 | sccs = [ |
| 5369 | SCC(set(read_str_list(buf)), read_int(buf), read_int_list(buf)) |
| 5370 | for _ in range(read_int_bare(buf)) |
| 5371 | ] |
| 5372 | return SccsDataMessage(sccs=sccs) |
| 5373 | |
| 5374 | def write(self, buf: WriteBuffer) -> None: |
| 5375 | write_tag(buf, SCCS_DATA_MESSAGE) |
nothing calls this directly
no test coverage detected