Browse Source

Replace contine with else, to fix coverage on 3.8/9

pull/1176/head
Ross McFarland 2 years ago
parent
commit
df85637d30
No known key found for this signature in database GPG Key ID: 943B179E15D3B22A
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      octodns/record/svcb.py

+ 2
- 2
octodns/record/svcb.py View File

@ -164,8 +164,8 @@ class SvcbValue(EqualityTupleMixin, dict):
) )
if parse_rdata_text is not None: if parse_rdata_text is not None:
params[paramkey] = parse_rdata_text(paramvalue[0]) params[paramkey] = parse_rdata_text(paramvalue[0])
continue
params[paramkey] = None
else:
params[paramkey] = None
return { return {
'svcpriority': svcpriority, 'svcpriority': svcpriority,
'targetname': targetname, 'targetname': targetname,


Loading…
Cancel
Save