Skip to content

Commit 595422d

Browse files
committed
Add pyright:ignore for sympy call
1 parent e826d86 commit 595422d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_simplecas.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def test_simplecas_to_sympy() -> None:
186186
(cos(x), cosx_sym),
187187
(cos(x) ** 2 + sin(x) ** 2, cosx_sym**2 + sinx_sym**2), # pyright: ignore
188188
(cos(x) * sin(x), cosx_sym * sinx_sym), # pyright: ignore
189-
(f(x), f_sym(x_sym)),
189+
(f(x), f_sym(x_sym)), # pyright: ignore
190190
]
191191
for expr, sympy_expr in test_cases:
192192
# XXX: Converting to SymPy and back does not in general round-trip

0 commit comments

Comments
 (0)