diff options
| author | Bob Halley <halley@dnspython.org> | 2022-11-24 07:20:58 -0800 |
|---|---|---|
| committer | Bob Halley <halley@dnspython.org> | 2022-11-24 07:20:58 -0800 |
| commit | e0e0883a50d92a54bc079fa58708da41fcebf5c5 (patch) | |
| tree | 7a0cadec07b6be9fd14c4b2046130b12d8929746 /dns/node.py | |
| parent | 12093aca267f0e37ca9d5fac4aa18277824c0d00 (diff) | |
| download | dnspython-e0e0883a50d92a54bc079fa58708da41fcebf5c5.tar.gz | |
Fix type lint from latest mypy.
Diffstat (limited to 'dns/node.py')
| -rw-r--r-- | dns/node.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dns/node.py b/dns/node.py index d870a29..f89c832 100644 --- a/dns/node.py +++ b/dns/node.py @@ -92,7 +92,7 @@ class Node: def __init__(self): # the set of rdatasets, represented as a list. - self.rdatasets: List[dns.rdataset.Rdataset] = [] + self.rdatasets = [] def to_text(self, name: dns.name.Name, **kw: Dict[str, Any]) -> str: """Convert a node to text format. |
