| 2765 | |
| 2766 | |
| 2767 | class ByteEnumField(EnumField[int]): |
| 2768 | def __init__(self, |
| 2769 | name, # type: str |
| 2770 | default, # type: Optional[int] |
| 2771 | enum, # type: _EnumType[int] |
| 2772 | ): |
| 2773 | # type: (...) -> None |
| 2774 | super(ByteEnumField, self).__init__(name, default, enum, "B") |
| 2775 | |
| 2776 | |
| 2777 | class XByteEnumField(ByteEnumField): |
no outgoing calls
no test coverage detected