(self, pkt, x)
| 821 | return cast(str, x) |
| 822 | |
| 823 | def i2repr(self, pkt, x): |
| 824 | # type: (Optional[Packet], Optional[str]) -> str |
| 825 | x = self.i2h(pkt, x) |
| 826 | if x is None: |
| 827 | return repr(x) |
| 828 | if self in conf.resolve: |
| 829 | x = conf.manufdb._resolve_MAC(x) |
| 830 | return x |
| 831 | |
| 832 | def randval(self): |
| 833 | # type: () -> RandMAC |
nothing calls this directly
no test coverage detected