class MsgContainer: def __init__(self, name: str, timestamp: float = 0, data: bytes = b''): self.name : str= name self.timestamp : float = timestamp self.data: bytes = data def __str__(self): return f"{self.name}: {self.timestamp}: {self.data}" def __repr__(self): return f"{self.name}: {self.timestamp}: {self.data}"