Skip to content

Commit

Permalink
Fix formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmtorres committed Jan 10, 2025
1 parent ce107c3 commit 6357d3c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion octodns_cloudflare/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,12 @@ def _record_is_just_auto_ttl(self, record):
return (
not self._record_is_proxied(record)
and not self.cdn
and record._octodns.get('cloudflare', {}).get('auto-ttl', record.source != self and record._type != 'URLFWD' and self.auto_ttl)
and record._octodns.get('cloudflare', {}).get(
'auto-ttl',
record.source != self
and record._type != 'URLFWD'
and self.auto_ttl,
)
)

def _record_comment(self, record):
Expand Down

0 comments on commit 6357d3c

Please sign in to comment.