chore(rds2): make flake8 happy
This commit is contained in:
parent
7b1cf9eecd
commit
d1a13ed782
@ -66,7 +66,7 @@ class Database(BaseModel):
|
|||||||
self.auto_minor_version_upgrade = True
|
self.auto_minor_version_upgrade = True
|
||||||
self.allocated_storage = kwargs.get('allocated_storage')
|
self.allocated_storage = kwargs.get('allocated_storage')
|
||||||
if self.allocated_storage is None:
|
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.db_instance_identifier = kwargs.get('db_instance_identifier')
|
||||||
self.source_db_identifier = kwargs.get("source_db_identifier")
|
self.source_db_identifier = kwargs.get("source_db_identifier")
|
||||||
self.db_instance_class = kwargs.get('db_instance_class')
|
self.db_instance_class = kwargs.get('db_instance_class')
|
||||||
@ -303,9 +303,8 @@ class Database(BaseModel):
|
|||||||
else:
|
else:
|
||||||
return 'io1'
|
return 'io1'
|
||||||
|
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def default_allocated_storage(engine,storage_type):
|
def default_allocated_storage(engine, storage_type):
|
||||||
return {
|
return {
|
||||||
'aurora': {
|
'aurora': {
|
||||||
'gp2': 0,
|
'gp2': 0,
|
||||||
|
Loading…
Reference in New Issue
Block a user