From c209c5a40a57fb5e73c4140e3d1ecbb98cf6e2a9 Mon Sep 17 00:00:00 2001 From: lkugler <lukas.kugler@gmail.com> Date: Tue, 23 May 2023 17:58:55 +0200 Subject: [PATCH] docs --- dartwrf/utils.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dartwrf/utils.py b/dartwrf/utils.py index e5a1406..fb9151d 100755 --- a/dartwrf/utils.py +++ b/dartwrf/utils.py @@ -51,11 +51,11 @@ class ClusterConfig(object): if WRF real: set to False obs_impact_filename (str): Path to obs_impact_filename (see DART guide; module assim_tools_mod and program obs_impact_tool) - slurm_cfg python dictionary, containing options of SLURM - defined in SLURM docs (https://slurm.schedmd.com/sbatch.html) - this configuration can be overwritten later on, for example: - 'dict(cluster.slurm_cfg, **cfg_update)' where - 'cfg_update = {"nodes": "2"}' + slurm_cfg (dict): python dictionary, containing options of SLURM + defined in SLURM docs (https://slurm.schedmd.com/sbatch.html) + this configuration can be overwritten later on, for example: + $ cfg_update = {"nodes": "2"} + $ new_config = dict(cluster.slurm_cfg, **cfg_update) """ def __init__(self, exp): -- GitLab