Skip to content

Commit 6bed3cd

Browse files
committed
chore: delete two docstrings missed by the worklist
1 parent f197a44 commit 6bed3cd

2 files changed

Lines changed: 0 additions & 3 deletions

File tree

‎src/zeroconf/_protocol/incoming.py‎

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -311,8 +311,6 @@ def _read_string(self, length: _int) -> bytes:
311311
return info
312312

313313
def _read_others(self) -> None:
314-
"""Reads the answers, authorities and additionals section of the
315-
packet"""
316314
self._did_read_others = True
317315
buf = self._buf
318316
answers = self._answers

‎tests/test_protocol.py‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,6 @@ def test_questions_do_not_end_up_every_packet(self):
457457

458458
class PacketForm(unittest.TestCase):
459459
def test_transaction_id(self):
460-
"""ID must be zero in a DNS-SD packet"""
461460
generated = r.DNSOutgoing(const._FLAGS_QR_QUERY)
462461
bytes = generated.packets()[0]
463462
id = bytes[0] << 8 | bytes[1]

0 commit comments

Comments
 (0)