Skip to content

Commit 758ac88

Browse files
fchapotonvbraun
authored andcommitted
Update symbolic_expression.py
pep8 and import cleanup
1 parent beada5d commit 758ac88

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/sage/tests/memcheck/symbolic_expression.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22

33

44
def test_sqrt_sqrt_2() -> None:
5-
from sage.all import sqrt
5+
from sage.misc.functional import sqrt
66
T2 = sqrt(2)
7-
7+
88
def sqrt_T2() -> None:
99
sqrt(T2)
10-
11-
verify_no_leak(sqrt_T2)
1210

11+
verify_no_leak(sqrt_T2)

0 commit comments

Comments
 (0)