Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rthalley committed Dec 28, 2023
1 parent 62c9536 commit c7eb392
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions dns/zone.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
from typing import (
Any,
Callable,
Dict,
Iterable,
Iterator,
List,
Expand Down Expand Up @@ -1098,7 +1097,9 @@ def __init__(self, version: WritableVersion):
version.nodes[name] = ImmutableVersionedNode(node)
# We're changing the type of the nodes dictionary here on purpose, so
# we ignore the mypy error.
self.nodes = dns.immutable.Dict(version.nodes, True, self.zone.map_factory) # type: ignore
self.nodes = dns.immutable.Dict(
version.nodes, True, self.zone.map_factory
) # type: ignore


class Transaction(dns.transaction.Transaction):
Expand Down

0 comments on commit c7eb392

Please sign in to comment.