Skip to content

Commit 1d13f5c

Browse files
authored
Fix broken docstring (#955)
1 parent c66686c commit 1d13f5c

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/executorlib/executor/flux.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class FluxJobExecutor(BaseExecutor):
5555
allowed to take in seconds.
5656
* priority (int): the queuing system priority assigned to a given Python function to
5757
influence the scheduling.
58-
*`slurm_cmd_args (list): Additional command line arguments for the srun call (SLURM only)
58+
* slurm_cmd_args (list): Additional command line arguments for the srun call (SLURM only)
5959
pmi_mode (str): PMI interface to use (OpenMPI v5 requires pmix) default is None
6060
flux_executor (flux.job.FluxExecutor): Flux Python interface to submit the workers to flux
6161
flux_executor_nesting (bool): Provide hierarchically nested Flux job scheduler inside the submitted function.
@@ -287,7 +287,7 @@ class FluxClusterExecutor(BaseExecutor):
287287
allowed to take in seconds.
288288
* priority (int): the queuing system priority assigned to a given Python function to
289289
influence the scheduling.
290-
*`slurm_cmd_args (list): Additional command line arguments for the srun call (SLURM only)
290+
* slurm_cmd_args (list): Additional command line arguments for the srun call (SLURM only)
291291
pysqa_config_directory (str, optional): path to the pysqa config directory (only for pysqa based backend).
292292
pmi_mode (str): PMI interface to use (OpenMPI v5 requires pmix) default is None
293293
hostname_localhost (boolean): use localhost instead of the hostname to establish the zmq connection. In the
@@ -544,7 +544,7 @@ def create_flux_executor(
544544
allowed to take in seconds.
545545
* priority (int): the queuing system priority assigned to a given Python function to
546546
influence the scheduling.
547-
*`slurm_cmd_args (list): Additional command line arguments for the srun call (SLURM only)
547+
* slurm_cmd_args (list): Additional command line arguments for the srun call (SLURM only)
548548
pmi_mode (str): PMI interface to use (OpenMPI v5 requires pmix) default is None
549549
flux_executor (flux.job.FluxExecutor): Flux Python interface to submit the workers to flux
550550
flux_executor_nesting (bool): Provide hierarchically nested Flux job scheduler inside the submitted function.

src/executorlib/executor/slurm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class SlurmClusterExecutor(BaseExecutor):
5656
allowed to take in seconds.
5757
* priority (int): the queuing system priority assigned to a given Python function to
5858
influence the scheduling.
59-
*`slurm_cmd_args (list): Additional command line arguments for the srun call (SLURM only)
59+
* slurm_cmd_args (list): Additional command line arguments for the srun call (SLURM only)
6060
pysqa_config_directory (str, optional): path to the pysqa config directory (only for pysqa based backend).
6161
pmi_mode (str): PMI interface to use (OpenMPI v5 requires pmix) default is None
6262
hostname_localhost (boolean): use localhost instead of the hostname to establish the zmq connection. In the
@@ -297,7 +297,7 @@ class SlurmJobExecutor(BaseExecutor):
297297
allowed to take in seconds.
298298
* priority (int): the queuing system priority assigned to a given Python function to
299299
influence the scheduling.
300-
*`slurm_cmd_args (list): Additional command line arguments for the srun call (SLURM only)
300+
* slurm_cmd_args (list): Additional command line arguments for the srun call (SLURM only)
301301
pmi_mode (str): PMI interface to use (OpenMPI v5 requires pmix) default is None
302302
hostname_localhost (boolean): use localhost instead of the hostname to establish the zmq connection. In the
303303
context of an HPC cluster this essential to be able to communicate to an

0 commit comments

Comments
 (0)