(self)
| 432 | method_type = "ip" |
| 433 | |
| 434 | def test(self): # type: () -> bool |
| 435 | return check_command("arp") |
| 436 | |
| 437 | def get(self, arg): # type: (str) -> Optional[str] |
| 438 | regex = r"\(" + re.escape(arg) + r"\)\s+at\s+" + MAC_RE_COLON |
nothing calls this directly
no test coverage detected