Browse Source

black 24.x formatting changes

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

+ 3
- 8
octodns/record/naptr.py View File

@ -13,14 +13,9 @@ class NaptrValue(EqualityTupleMixin, dict):
@classmethod
def parse_rdata_text(cls, value):
try:
(
order,
preference,
flags,
service,
regexp,
replacement,
) = value.split(' ')
(order, preference, flags, service, regexp, replacement) = (
value.split(' ')
)
except ValueError:
raise RrParseError()
try:


Loading…
Cancel
Save