Skip to content

Commit 28247b9

Browse files
committed
Fix import error
1 parent 77efc63 commit 28247b9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

symengine/tests/test_pickling.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
from symengine import symbols, sin, sinh, Lambdify, have_numpy, have_llvm
1+
from symengine import symbols, sin, sinh, have_numpy, have_llvm
22
import pickle
33
import unittest
44

55
@unittest.skipUnless(have_llvm, "No LLVM support")
66
@unittest.skipUnless(have_numpy, "Numpy not installed")
77
def test_llvm_double():
88
import numpy as np
9+
from symengine import Lambdify
910
args = x, y, z = symbols('x y z')
1011
expr = sin(sinh(x+y) + z)
1112
l = Lambdify(args, expr, cse=True, backend='llvm')

0 commit comments

Comments
 (0)