diff --git a/plugins/modules/gcp_storage_object.py b/plugins/modules/gcp_storage_object.py index ee110a8..f589a36 100644 --- a/plugins/modules/gcp_storage_object.py +++ b/plugins/modules/gcp_storage_object.py @@ -18,15 +18,14 @@ # ---------------------------------------------------------------------------- from __future__ import absolute_import, division, print_function + __metaclass__ = type ################################################################################ # Documentation ################################################################################ -ANSIBLE_METADATA = {'metadata_version': '1.1', - 'status': ["preview"], - 'supported_by': 'community'} +ANSIBLE_METADATA = {'metadata_version': '1.1', 'status': ["preview"], 'supported_by': 'community'} DOCUMENTATION = ''' --- @@ -145,7 +144,7 @@ def main(): overwrite=dict(type='bool'), src=dict(type='path'), dest=dict(type='path'), - bucket=dict(type='str') + bucket=dict(type='str'), ) ) @@ -277,7 +276,7 @@ def object_headers(module): return { "name": module.params['dest'], "Content-Type": mimetypes.guess_type(module.params['src'])[0], - "Content-Length": str(os.path.getsize(module.params['src'])) + "Content-Length": str(os.path.getsize(module.params['src'])), }