From 413ec912991d56324e12ee6e9b5579c5b4f8d8ca Mon Sep 17 00:00:00 2001
From: Florian Spreckelsen <f.spreckelsen@indiscale.com>
Date: Thu, 29 Aug 2024 11:54:32 +0200
Subject: [PATCH] DOC: Use correct backticks

---
 src/linkahead/utils/server_side_scripting.py | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/linkahead/utils/server_side_scripting.py b/src/linkahead/utils/server_side_scripting.py
index f97f1c41..867155cf 100644
--- a/src/linkahead/utils/server_side_scripting.py
+++ b/src/linkahead/utils/server_side_scripting.py
@@ -102,16 +102,16 @@ def run_server_side_script(call, *args, files=None, **kwargs):
     Parameters
     ----------
     call : str
-        name of the script to be called, potentially with path prefix (e.g. `management/update.py`)
+        name of the script to be called, potentially with path prefix (e.g. ``management/update.py``)
     *args : list(str)
         list of positional arguments
     files : dict
-        dictionary with where keys are the argument names with prefix (e.g. `-p1` or `-Ofile`) and
+        dictionary with where keys are the argument names with prefix (e.g. ``-p1`` or ``-Ofile``) and
         the values are the paths to the files to be uploaded. Note, that only the base name will be
-        used when uploaded. Files will be placed in the `.upload_files` folder. Thus, the script
-        will be called with the argument `<key>=.upload_files/<basename>`.
+        used when uploaded. Files will be placed in the ``.upload_files`` folder. Thus, the script
+        will be called with the argument ``<key>=.upload_files/<basename>``.
     **kwargs : dict
-        kwargs will be passed to `_make_request`
+        kwargs will be passed to ``_make_request``
 
     Return
     ------
-- 
GitLab