Your package is so useful that I stop using ipython anymore. Thank you!
I start using taichi recently and I encounter an error, the minimal sample is list below.
import stackprinter
import taichi as ti
stackprinter.set_excepthook(style="darkbg2")
@ti.kernel
def my_kernel() -> float:
return "22"
my_kernel()