Skip to content

Commit

Permalink
Docs: sanity fixes (ansible-collections#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
Akasurde authored and GomathiselviS committed Oct 24, 2024
1 parent 41636f6 commit 60baf89
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/modules/ec2_placement_group_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
__metaclass__ = type


DOCUMENTATION = '''
DOCUMENTATION = r'''
---
module: ec2_placement_group_info
version_added: 1.0.0
Expand Down Expand Up @@ -51,7 +51,7 @@
'''


RETURN = '''
RETURN = r'''
placement_groups:
description: Placement group attributes
returned: always
Expand Down Expand Up @@ -107,7 +107,7 @@ def get_placement_groups_details(connection, module):

def main():
argument_spec = dict(
names=dict(type='list', default=[])
names=dict(type='list', default=[], elements='str')
)

module = AnsibleAWSModule(
Expand Down

0 comments on commit 60baf89

Please sign in to comment.