fix: revert DNSIncoming cimport in _dns.pxd (#1209) · python-zeroconf/python-zeroconf@5f14b6d

Original file line numberDiff line numberDiff line change

@@ -1,8 +1,6 @@

11
22

import cython

33
4-

from ._protocol.incoming cimport DNSIncoming

5-
64
75

cdef object _LEN_BYTE

86

cdef object _LEN_SHORT

@@ -44,7 +42,7 @@ cdef class DNSRecord(DNSEntry):

4442

@cython.locals(

4543

answers=cython.list,

4644

)

47-

cpdef suppressed_by(self, DNSIncoming msg)

45+

cpdef suppressed_by(self, object msg)

4846
4947

cpdef get_expiration_time(self, cython.uint percent)

5048