From e1d981114816416e0f6c50cfd150445ce11d8451 Mon Sep 17 00:00:00 2001 From: yyw Date: Tue, 4 Nov 2025 22:40:24 +0200 Subject: [PATCH] str use script(convert=False) --- simple_slurm/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simple_slurm/core.py b/simple_slurm/core.py index 63d8e1d..c2fc1e6 100644 --- a/simple_slurm/core.py +++ b/simple_slurm/core.py @@ -58,7 +58,7 @@ def __init__(self, *args, **kwargs): def __str__(self) -> str: """Print the generated sbatch script.""" - return self.script() + return self.script(convert=False) def __repr__(self) -> str: """Print the argparse namespace."""