Fixed raw strings, to align with the rest of the project

This commit is contained in:
Samori Gorse 2025-02-12 16:10:14 +01:00
parent bf389ea3fa
commit a17a84a060

View file

@ -6,7 +6,7 @@
from __future__ import (absolute_import, division, print_function) from __future__ import (absolute_import, division, print_function)
__metaclass__ = type __metaclass__ = type
DOCUMENTATION = ''' DOCUMENTATION = r"""
module: xen_orchestra_instance module: xen_orchestra_instance
short_description: Management of instances on Xen Orchestra short_description: Management of instances on Xen Orchestra
description: description:
@ -73,10 +73,10 @@ seealso:
- name: Xen Orchestra documentation - name: Xen Orchestra documentation
description: Official documentation of Xen Orchestra CLI. description: Official documentation of Xen Orchestra CLI.
link: https://docs.xen-orchestra.com/architecture#xo-cli-cli link: https://docs.xen-orchestra.com/architecture#xo-cli-cli
''' """
EXAMPLES = r''' EXAMPLES = r"""
- name: Create a new virtual machine - name: Create a new virtual machine
community.general.xen_orchestra: community.general.xen_orchestra:
api_host: xen-orchestra.lab api_host: xen-orchestra.lab
@ -120,7 +120,7 @@ EXAMPLES = r'''
password: passw0rd password: passw0rd
validate_certs: false validate_certs: false
state: absent state: absent
''' """
import json import json
import ssl import ssl