from abc import ABC from a_transceiver import ATransceiver class ABackend(ABC): def send(self, xcr: ATransceiver, data: bytes): pass