1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Small fixes. (#4605) (#4607)

(cherry picked from commit 5cb7c2e45e)

Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
patchback[bot] 2022-05-02 08:16:14 +02:00 committed by GitHub
parent 6f4167fb01
commit 65dde57c1a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 6 deletions

View file

@ -56,7 +56,7 @@ EXAMPLES = '''
RETURN = ''' RETURN = '''
_value: _value:
description: Whether the module or action plugin denoted by the input exists. description: The dictionary having the provided key-value pairs.
type: boolean type: boolean
''' '''

View file

@ -52,7 +52,7 @@ DOCUMENTATION = '''
''' '''
EXAMPLES = ''' EXAMPLES = '''
- name: Create a list of dictionaries with map and the community.general.dict filter - name: Parse a CSV file's contents
ansible.builtin.debug: ansible.builtin.debug:
msg: >- msg: >-
{{ csv_data | community.genera.from_csv(dialect='unix') }} {{ csv_data | community.genera.from_csv(dialect='unix') }}

View file

@ -116,7 +116,7 @@ EXAMPLES = '''
RETURN = ''' RETURN = '''
_value: _value:
description: Whether the module or action plugin denoted by the input exists. description: The result of the query.
type: any type: any
''' '''

View file

@ -54,7 +54,7 @@ DOCUMENTATION = '''
''' '''
EXAMPLES = ''' EXAMPLES = '''
- name: Create a list of dictionaries with map and the community.general.dict filter - name: Merge two lists
ansible.builtin.debug: ansible.builtin.debug:
msg: >- msg: >-
{{ list1 | community.general.lists_mergeby( {{ list1 | community.general.lists_mergeby(
@ -92,8 +92,9 @@ EXAMPLES = '''
RETURN = ''' RETURN = '''
_value: _value:
description: Whether the module or action plugin denoted by the input exists. description: The merged list.
type: boolean type: list
elements: dictionary
''' '''
from ansible.errors import AnsibleFilterError from ansible.errors import AnsibleFilterError