collection: Change default='no's and 'yes's to default=False and default=True (#556)

* Change default={'no','yes'} to default={False,True}

* Add changelog

* Remove changelog
This commit is contained in:
Amin Vakil
2020-06-22 18:26:35 +04:30
committed by GitHub
parent 004eb6992f
commit 650ae65f24
32 changed files with 58 additions and 58 deletions

View File

@@ -409,7 +409,7 @@ def main():
gs_access_key=dict(required=True),
overwrite=dict(default=True, type='bool', aliases=['force']),
region=dict(default='US', type='str'),
versioning=dict(default='no', type='bool')
versioning=dict(default=False, type='bool')
),
)