| 2509 | |
| 2510 | |
| 2511 | class XBitField(BitField): |
| 2512 | def i2repr(self, pkt, x): |
| 2513 | # type: (Optional[Packet], int) -> str |
| 2514 | return lhex(self.i2h(pkt, x)) |
| 2515 | |
| 2516 | |
| 2517 | _EnumType = Union[Dict[I, str], Dict[str, I], List[str], DADict[I, str], Type[Enum], Tuple[Callable[[I], str], Callable[[str], I]]] # noqa: E501 |
no outgoing calls
no test coverage detected