-
Notifications
You must be signed in to change notification settings - Fork 125
Closed
Description
There is a syntax error here:
pyslurm/pyslurm/core/job/submission.pyx
Line 171 in 1d1c4f5
| val = pyenviron.get(f"PYSLURM_JOBDESC_{spec)}") |
The close-paren inside the {} here is invalid syntax:
val = pyenviron.get(f"PYSLURM_JOBDESC_{spec)}")Both the Python interpreter and Cython complain about this and abort. The fix is to remove that extraneous close-paren.
This appears both in 24.5.x and main. It's been in these branches since 0043080#diff-34fd3bc208e0d024056ef78c881a6eb3fbb5ddb99b127043123498985d4c6dc6
I honestly don't know how this ever worked, or why I'm only now running into it.
Metadata
Metadata
Assignees
Labels
No labels