mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 13:32:11 -04:00
Fix compatibility with Python < 3.10
Dataclass kw_only argument was added only in Python 3.10 but EL9 image has only 3.9.21.
This commit is contained in:
parent
6ae224fc9c
commit
b0c7f8b598
1 changed files with 1 additions and 1 deletions
|
|
@ -268,7 +268,7 @@ def check_wildcard_synthesis(qname: dns.name.Name, nsec3check: "NSEC3Checker") -
|
|||
nsec3check.check_extraneous_rrs()
|
||||
|
||||
|
||||
@dataclass(kw_only=True, frozen=True)
|
||||
@dataclass(frozen=True)
|
||||
class NSEC3Params:
|
||||
"""Common values from a single DNS response"""
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue