Skip to content

Commit 1c44fc2

Browse files
author
Thomas Baumann
committed
Linting
1 parent b9b3702 commit 1c44fc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pySDC/projects/Resilience/leaky_superconductor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ def compare_imex_full(plotting=False):
234234
newton_iter = [me[1] for me in get_sorted(stats, type='work_newton')]
235235

236236
if imex:
237-
assert all([me == 0 for me in newton_iter]), f"IMEX is not supposed to do Newton iterations!"
237+
assert all([me == 0 for me in newton_iter]), "IMEX is not supposed to do Newton iterations!"
238238
else:
239239
assert max(newton_iter)/num_nodes/maxiter <= newton_iter_max, "Took more Newton iterations than allowed!"
240240
if plotting: # pragma no cover

0 commit comments

Comments
 (0)