We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cdceea commit f575a1eCopy full SHA for f575a1e
sipgate_e2e_test_utils/xml_rpc.py
@@ -36,7 +36,7 @@ class XmlRpcResponse:
36
"""
37
fault_code: int
38
fault_string: str
39
- members: dict[str, Any]
+ members: dict[str, Any] = field(default_factory=dict)
40
41
def __repr__(self) -> str:
42
return f"<{self.__class__.__name__} faultCode={self.fault_code} faultString={self.fault_string} members={self.members}>"
0 commit comments