Skip to content

Commit

Permalink
Fix parse_xml type for tmpl
Browse files Browse the repository at this point in the history
  • Loading branch information
GMoustacky authored and jeremie-dathena committed Sep 28, 2023
1 parent 3b50805 commit 09715a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugins/filter/parse_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
It defines how to parse the CLI output and return JSON data.
- For example C(cli_data | ansible.netcommon.parse_cli(template.yml)),
in this case C(cli_data) represents cli output.
type: string
type: str
"""

EXAMPLES = r"""
Expand Down
2 changes: 1 addition & 1 deletion plugins/filter/parse_xml.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
It defines how to parse the XML output and return JSON data.
- For example C(xml_data | ansible.netcommon.parse_xml(template.yml)),
in this case C(xml_data) represents xml data option.
type: string
type: str
"""

EXAMPLES = r"""
Expand Down
2 changes: 1 addition & 1 deletion plugins/filter/vlan_expander.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
data:
description:
- This option represents a string containing the range of vlans.
type: string
type: str
required: True
"""

Expand Down

0 comments on commit 09715a9

Please sign in to comment.