(self, write_context, value)
| 92 | |
| 93 | class ByteSerializer(Serializer): |
| 94 | def write(self, write_context, value): |
| 95 | write_context.write_int8(value) |
| 96 | |
| 97 | def read(self, read_context): |
| 98 | return read_context.read_int8() |
nothing calls this directly
no test coverage detected