mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-16 02:02:58 -07:00
Bump dnspython from 2.3.0 to 2.4.2 (#2123)
* Bump dnspython from 2.3.0 to 2.4.2 Bumps [dnspython](https://github.com/rthalley/dnspython) from 2.3.0 to 2.4.2. - [Release notes](https://github.com/rthalley/dnspython/releases) - [Changelog](https://github.com/rthalley/dnspython/blob/master/doc/whatsnew.rst) - [Commits](https://github.com/rthalley/dnspython/compare/v2.3.0...v2.4.2) --- updated-dependencies: - dependency-name: dnspython dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update dnspython==2.4.2 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
This commit is contained in:
parent
9f00f5dafa
commit
c0aa4e4996
108 changed files with 2985 additions and 1136 deletions
|
@ -24,8 +24,8 @@ import dns.name
|
|||
import dns.opcode
|
||||
import dns.rdata
|
||||
import dns.rdataclass
|
||||
import dns.rdatatype
|
||||
import dns.rdataset
|
||||
import dns.rdatatype
|
||||
import dns.tsig
|
||||
|
||||
|
||||
|
@ -43,7 +43,6 @@ class UpdateSection(dns.enum.IntEnum):
|
|||
|
||||
|
||||
class UpdateMessage(dns.message.Message): # lgtm[py/missing-equals]
|
||||
|
||||
# ignore the mypy error here as we mean to use a different enum
|
||||
_section_enum = UpdateSection # type: ignore
|
||||
|
||||
|
@ -336,12 +335,12 @@ class UpdateMessage(dns.message.Message): # lgtm[py/missing-equals]
|
|||
True,
|
||||
)
|
||||
else:
|
||||
the_rdtype = dns.rdatatype.RdataType.make(rdtype)
|
||||
rdtype = dns.rdatatype.RdataType.make(rdtype)
|
||||
self.find_rrset(
|
||||
self.prerequisite,
|
||||
name,
|
||||
dns.rdataclass.NONE,
|
||||
the_rdtype,
|
||||
rdtype,
|
||||
dns.rdatatype.NONE,
|
||||
None,
|
||||
True,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue