Skip to content

Commit 8f960ce

Browse files
author
Christopher Doris
committed
remove logging
1 parent d223561 commit 8f960ce

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pysrc/juliacall/ipython.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"""
1414

1515
from IPython.core.magic import Magics, magics_class, line_cell_magic
16-
from . import Main, Base, PythonCall
16+
from . import Main, PythonCall
1717
import __main__
1818

1919
_set_var = Main.seval("(k, v) -> @eval $(Symbol(k)) = $v")
@@ -58,7 +58,6 @@ def julia(self, line, cell=None):
5858
v0 = cachevars.get(k)
5959
v1 = _get_var(k)
6060
if v1 is not None and (v0 is None or not _egal(v0, v1)):
61-
print(k)
6261
__main__.__dict__[k] = v1._jl_any()
6362
# return the value unless suppressed with trailing ";"
6463
if not code.strip().endswith(';'):

0 commit comments

Comments
 (0)