From a17a84a0604c06ec57a353a9dd104bc1bd761cc5 Mon Sep 17 00:00:00 2001
From: Samori Gorse <samori@codeinstyle.io>
Date: Wed, 12 Feb 2025 16:10:14 +0100
Subject: [PATCH] Fixed raw strings, to align with the rest of the project

---
 plugins/modules/xen_orchestra_instance.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

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