We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
f
1 parent 38842f3 commit ac3693cCopy full SHA for ac3693c
1 file changed
hypnotoad/cases/tokamak.py
@@ -1083,12 +1083,12 @@ def describeDoubleNull(self):
1083
if not np.isclose(lower_psi, self.psi(*lower_x_point)):
1084
raise ValueError(
1085
f"psi-value for lower separatrix {lower_psi} does not match value at "
1086
- "lower X-point {self.psi(*lower_x_point)}"
+ f"lower X-point {self.psi(*lower_x_point)}"
1087
)
1088
if not np.isclose(upper_psi, self.psi(*upper_x_point)):
1089
1090
f"psi-value for upper separatrix {upper_psi} does not match value at "
1091
- "upper X-point {self.psi(*upper_x_point)}"
+ f"upper X-point {self.psi(*upper_x_point)}"
1092
1093
1094
# Find lines along the legs from X-point to target
0 commit comments