(self)
| 951 | |
| 952 | def is_am(self) -> bool: return isinstance(self.iface, (PCIIface, USBIface)) |
| 953 | def is_usb(self) -> bool: return isinstance(self.iface, USBIface) |
| 954 | |
| 955 | def __init__(self, device:str=""): |
| 956 | self.device_id = int(device.split(":")[1]) if ":" in device else 0 |
no outgoing calls