Hello,
just installed icecream and tested with this code:
from icecream import ic
def foo(i):
return i + 333
ic(foo(123))
I get this:
ic| Error: Failed to access the underlying source code for analysis. Was ic() invoked in a REPL (e.g. from the command line), a frozen application (e.g. packaged with PyInstaller), or did the underlying source code change during execution?
Hello, just installed icecream and tested with this code:
from icecream import ic def foo(i): return i + 333 ic(foo(123))
I get this: ic| Error: Failed to access the underlying source code for analysis. Was ic() invoked in a REPL (e.g. from the command line), a frozen application (e.g. packaged with PyInstaller), or did the underlying source code change during execution?
thanks Richard