From 5f46aa8c504b2d65bc22c4df652ce8fed59017fa Mon Sep 17 00:00:00 2001 From: Niels Laukens Date: Mon, 17 Jun 2019 16:59:07 +0200 Subject: [PATCH] Reduced readability to please flake8 --- moto/route53/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moto/route53/models.py b/moto/route53/models.py index 9961f4157..da298144f 100644 --- a/moto/route53/models.py +++ b/moto/route53/models.py @@ -195,7 +195,7 @@ class FakeZone(BaseModel): record_set for record_set in self.rrsets if record_set.name != rrset['Name'] or - (rrset.get('Type') is not None and record_set.type_ != rrset['Type']) + (rrset.get('Type') is not None and record_set.type_ != rrset['Type']) ] def delete_rrset_by_id(self, set_identifier):