(self)
| 445 | _regex = r"[ ]+" + MAC_RE_COLON # type: str |
| 446 | |
| 447 | def test(self): # type: () -> bool |
| 448 | return check_command("arp") |
| 449 | |
| 450 | def get(self, arg): # type: (str) -> Optional[str] |
| 451 | return _search(re.escape(arg) + self._regex, _popen("arp", "-an")) |
nothing calls this directly
no test coverage detected