From d1a13ed7827f521dd67af8f6f8a0e623afda628d Mon Sep 17 00:00:00 2001 From: Stephen Huff Date: Wed, 16 Oct 2019 09:10:56 -0400 Subject: [PATCH] chore(rds2): make flake8 happy --- moto/rds2/models.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/moto/rds2/models.py b/moto/rds2/models.py index 18f605511..cd56599e6 100644 --- a/moto/rds2/models.py +++ b/moto/rds2/models.py @@ -66,7 +66,7 @@ class Database(BaseModel): self.auto_minor_version_upgrade = True self.allocated_storage = kwargs.get('allocated_storage') if self.allocated_storage is None: - self.allocated_storage = Database.default_allocated_storage(engine=self.engine,storage_type=self.storage_type) + self.allocated_storage = Database.default_allocated_storage(engine=self.engine, storage_type=self.storage_type) self.db_instance_identifier = kwargs.get('db_instance_identifier') self.source_db_identifier = kwargs.get("source_db_identifier") self.db_instance_class = kwargs.get('db_instance_class') @@ -303,9 +303,8 @@ class Database(BaseModel): else: return 'io1' - @staticmethod - def default_allocated_storage(engine,storage_type): + def default_allocated_storage(engine, storage_type): return { 'aurora': { 'gp2': 0,