Skip to content

Commit

Permalink
Yet another black restyle
Browse files Browse the repository at this point in the history
  • Loading branch information
braxtoncuneo committed Aug 24, 2023
1 parent 40fdb5d commit 82521cc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/verification/analytic/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@
if not os.path.isfile("output_" + str(int(N_hist)) + ".h5"):
print(task, int(N_hist))
if N_proc == 1:
waitlist.append(subprocess.Popen(("python input.py --mode=numba %i" % (N_hist)).split()))
waitlist.append(
subprocess.Popen(
("python input.py --mode=numba %i" % (N_hist)).split()
)
)
else:
os.system(
"srun -n %i python input.py --mode=numba %i" % (N_proc, N_hist)
Expand Down

0 comments on commit 82521cc

Please sign in to comment.