Skip to content

Commit 23056eb

Browse files
committed
Fix f-string prefix order: fr -> rf
1 parent 9af1c3e commit 23056eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/generalized_linear_models/GLM-hierarchical-binomial-model.myst.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ ax.set_ylabel(r"$\log(\alpha+\beta)$", fontsize=16)
159159
ix_z, ix_x = np.unravel_index(np.argmax(surface, axis=None), surface.shape)
160160
ax.scatter([X[0, ix_x]], [Z[ix_z, 0]], color="red")
161161
162-
text = fr"$({np.round(X[0, ix_x], 2)},{np.round(Z[ix_z, 0], 2)})$"
162+
text = rf"$({np.round(X[0, ix_x], 2)},{np.round(Z[ix_z, 0], 2)})$"
163163
164164
ax.annotate(
165165
text,

0 commit comments

Comments
 (0)