From 245e3a5f719bcf74846e789d3c3f1b4f9b56ca53 Mon Sep 17 00:00:00 2001 From: Jon Beilke Date: Fri, 21 Sep 2018 13:33:10 -0500 Subject: [PATCH] formatting fix for E111 indentation is not a multiple of four --- moto/rds2/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moto/rds2/models.py b/moto/rds2/models.py index b37306b12..159a56ebd 100644 --- a/moto/rds2/models.py +++ b/moto/rds2/models.py @@ -712,7 +712,7 @@ class RDS2Backend(BaseBackend): if len(self.snapshots) >= int(os.environ.get('MOTO_RDS_SNAPSHOT_LIMIT', '100')): raise SnapshotQuotaExceededError() if tags is None: - tags = list() + tags = list() if database.copy_tags_to_snapshot and not tags: tags = database.get_tags() snapshot = Snapshot(database, db_snapshot_identifier, tags)