We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf4d30b commit 8b9dc10Copy full SHA for 8b9dc10
preciceconfigvisualizer/common.py
@@ -299,7 +299,7 @@ def lookupParticipantColor(name):
299
meshNode = f"{name}-{mesh}"
300
data = read.attrib["name"]
301
if data_access == "full":
302
- label = data + f" (JIT {jit_from[mesh]})" if mesh in jit_from else ""
+ label = data + (f" (JIT {jit_from[mesh]})" if mesh in jit_from else "")
303
addEdge(
304
participant,
305
meshNode,
@@ -320,7 +320,7 @@ def lookupParticipantColor(name):
320
321
data = write.attrib["name"]
322
323
- label = data + f" (JIT {jit_to[mesh]})" if mesh in jit_to else ""
+ label = data + (f" (JIT {jit_to[mesh]})" if mesh in jit_to else "")
324
325
326
name,
0 commit comments