Skip to content

Commit 2adb2da

Browse files
jasonsewalltazend
authored andcommitted
Fix syntax error in f-string in submission.pyx (#390)
Causes build errors starting with Cython 3.2.0
1 parent 546f3d2 commit 2adb2da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyslurm/core/job/submission.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ cdef class JobSubmitDescription:
168168
continue
169169

170170
spec = attr.upper()
171-
val = pyenviron.get(f"PYSLURM_JOBDESC_{spec)}")
171+
val = pyenviron.get(f"PYSLURM_JOBDESC_{spec}")
172172
if (val is not None
173173
and (getattr(self, attr) is None or overwrite)):
174174

0 commit comments

Comments
 (0)