Conditions | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | """Defines Echo Reply message during the handshake.""" |
||
25 | def __init__(self, xid=None, data=b''): |
||
26 | """Create a EchoReply with the optional parameters below. |
||
27 | |||
28 | Args: |
||
29 | xid (int): xid to be used on the message header. |
||
30 | data (bytes): arbitrary-length data field. |
||
31 | """ |
||
32 | super().__init__(xid) |
||
33 | self.data = data |
||
34 |