| 2827 | |
| 2828 | |
| 2829 | class XShortEnumField(ShortEnumField): |
| 2830 | def _i2repr(self, pkt, x): |
| 2831 | # type: (Optional[Packet], Any) -> str |
| 2832 | return lhex(x) |
| 2833 | |
| 2834 | |
| 2835 | class LE3BytesEnumField(LEThreeBytesField, _EnumField[int]): |
no outgoing calls
no test coverage detected
searching dependent graphs…