Skip to content

Commit b317403

Browse files
committed
Don't use \ in f-string
1 parent e47d0b9 commit b317403

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/protosym/simplecas/functions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
# ------------------------------------------------------------------------- #
8383

8484
latex_add = PyOpN(lambda args: f'({" + ".join(args)})')
85-
latex_mul = PyOpN(lambda args: f"({' \\times '.join(args)})")
85+
latex_mul = PyOpN(lambda args: "(" + r" \times ".join(args) + ")")
8686
latex_pow = PyOp2(lambda b, e: f"{b}^{{{e}}}")
8787
latex_sin = PyOp1(lambda a: rf"\sin({a})")
8888
latex_cos = PyOp1(lambda a: rf"\cos({a})")

0 commit comments

Comments
 (0)