feat: Process boolean True responses over Packet Stream

This commit is contained in:
2023-11-18 07:06:10 +01:00
parent 9b54ea6cec
commit d6881cd8d5
2 changed files with 9 additions and 3 deletions

View File

@@ -184,7 +184,7 @@ class MuxRPCMessage:
return cls(message.body)
def __init__(self, body: Union[bytes, str, Dict[str, Any]]):
def __init__(self, body: Union[bytes, str, Dict[str, Any], bool]):
self.body = body
def __repr__(self) -> str: