Skip to content

Commit

Permalink
Clean out stray prints
Browse files Browse the repository at this point in the history
  • Loading branch information
miri64 committed Nov 4, 2024
1 parent 9cfef5a commit 3ef2f88
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion cbor4dns/decode.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,6 @@ def _decode_svcb_rr(self, rdtype, rdclass, svcb_rdata):
)
parser = dns.wire.Parser(v)
svcb_params[k] = cls.from_wire_parser(parser)
print(target)
return dns.rdtypes.IN.SVCB.SVCB(
rdclass,
rdtype,
Expand Down
2 changes: 0 additions & 2 deletions cbor4dns/encode.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,6 @@ def __init__(
ref_idx: RefIdx,
):
super().__init__(name, type_spec, ttl, None, question, ref_idx)
print(type(soa.mname), soa.mname)
self.mname = soa.mname
self.rname = soa.rname
self.serial = soa.serial
Expand All @@ -419,7 +418,6 @@ def __init__(
def to_obj(self):
res = super().to_obj()
rr = []
print(type(self.mname), self.mname)
rr.extend(self.ref_idx.add(self.mname))
rr.append(self.serial)
rr.append(self.refresh)
Expand Down

0 comments on commit 3ef2f88

Please sign in to comment.