fix: add missing python definition for addresses_by_version by bdraco · Pull Request #1278 · python-zeroconf/python-zeroconf
Expand Up
@@ -87,7 +87,9 @@ cdef class ServiceInfo(RecordUpdateListener):
cdef cython.list _ip_addresses_by_version_value(self, object version_value)
cdef addresses_by_version(self, object version) cpdef addresses_by_version(self, object version)
cpdef ip_addresses_by_version(self, object version)
@cython.locals(cacheable=cython.bint) cdef cython.list _dns_addresses(self, object override_ttls, object version) Expand Down
cdef cython.list _ip_addresses_by_version_value(self, object version_value)
cdef addresses_by_version(self, object version) cpdef addresses_by_version(self, object version)
cpdef ip_addresses_by_version(self, object version)
@cython.locals(cacheable=cython.bint) cdef cython.list _dns_addresses(self, object override_ttls, object version) Expand Down