diff options
author | Matt Clay <matt@mystile.com> | 2024-10-09 23:22:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-09 23:22:35 +0200 |
commit | a0495fc31497798a7a833ba7406a9729e1528dd8 (patch) | |
tree | c9ebc8e92d18e20bbb5f44d0184d00166b63b4df /test/integration/targets/collections/testcoll2 | |
parent | ansible-test - Work around pylint issue on 3.11 (#84094) (diff) | |
download | ansible-a0495fc31497798a7a833ba7406a9729e1528dd8.tar.xz ansible-a0495fc31497798a7a833ba7406a9729e1528dd8.zip |
Update triple single quotes to triple double quotes (#84099)
* Update triple single quotes to triple double quotes
This change was fully automated.
The updated Python files have been verified to tokenize the same as the originals, except for the expected change in quoting of strings, which were verified through literal_eval.
* Manual conversion of docstring quotes
Diffstat (limited to 'test/integration/targets/collections/testcoll2')
-rw-r--r-- | test/integration/targets/collections/testcoll2/plugins/modules/testmodule2.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/integration/targets/collections/testcoll2/plugins/modules/testmodule2.py b/test/integration/targets/collections/testcoll2/plugins/modules/testmodule2.py index f8db43ec1b..bfe1310d9b 100644 --- a/test/integration/targets/collections/testcoll2/plugins/modules/testmodule2.py +++ b/test/integration/targets/collections/testcoll2/plugins/modules/testmodule2.py @@ -5,7 +5,7 @@ ANSIBLE_METADATA = {'metadata_version': '1.1', 'status': ['stableinterface'], 'supported_by': 'core'} -DOCUMENTATION = ''' +DOCUMENTATION = """ --- module: testmodule2 short_description: Test module @@ -13,13 +13,13 @@ description: - Test module author: - Ansible Core Team -''' +""" -EXAMPLES = ''' -''' +EXAMPLES = """ +""" -RETURN = ''' -''' +RETURN = """ +""" import json |