Skip to content

Commit d5f9571

Browse files
committed
fix: lint
1 parent 560f293 commit d5f9571

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

src/zeroconf/_core.pxd

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ cdef object _MDNS_ADDR6,_MDNS_ADDR
77

88

99
from ._cache cimport DNSCache
10+
from ._handlers.answers cimport (
11+
construct_outgoing_multicast_answers,
12+
construct_outgoing_unicast_answers,
13+
)
1014
from ._handlers.multicast_outgoing_queue cimport MulticastOutgoingQueue
1115
from ._handlers.query_handler cimport QueryHandler, QuestionAnswers
1216
from ._history cimport QuestionHistory

tests/test_asyncio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1246,7 +1246,7 @@ def update_service(self, zc, type_, name) -> None: # type: ignore[no-untyped-de
12461246
)
12471247

12481248
zc.record_manager.async_updates_from_response(DNSIncoming(generated.packets()[0]))
1249-
zc.handle_response(DNSIncoming(generated.packets()[0]))
1249+
zc.record_manager.async_updates_from_response(DNSIncoming(generated.packets()[0]))
12501250

12511251
await browser.async_cancel()
12521252
await asyncio.sleep(0)

0 commit comments

Comments
 (0)