| 1047 | |
| 1048 | |
| 1049 | class ByteField(Field[int, int]): |
| 1050 | def __init__(self, name, default): |
| 1051 | # type: (str, Optional[int]) -> None |
| 1052 | Field.__init__(self, name, default, "B") |
| 1053 | |
| 1054 | |
| 1055 | class XByteField(ByteField): |
no outgoing calls
no test coverage detected