We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e826d86 commit 595422dCopy full SHA for 595422d
tests/test_simplecas.py
@@ -186,7 +186,7 @@ def test_simplecas_to_sympy() -> None:
186
(cos(x), cosx_sym),
187
(cos(x) ** 2 + sin(x) ** 2, cosx_sym**2 + sinx_sym**2), # pyright: ignore
188
(cos(x) * sin(x), cosx_sym * sinx_sym), # pyright: ignore
189
- (f(x), f_sym(x_sym)),
+ (f(x), f_sym(x_sym)), # pyright: ignore
190
]
191
for expr, sympy_expr in test_cases:
192
# XXX: Converting to SymPy and back does not in general round-trip
0 commit comments