Comment associated with JOSS review openjournals/joss-reviews#9401 (comment)
In the Getting Started tutorial, you use ani = make_offax_psf_movie(yip, "offax_psf_animation.gif"). This successfully saves a .gif animation, but leaves ani as None since make_offax_psf_movie has no return. This causes the next line, HTML(ani.to_jshtml()), to error and for the animation not to play within a jupyter notebook. I'm guessing you just need to add return ani after this line, but double check that. Note that the online version of the docs also currently shows the same error, so after a fix, be sure to regenerate those.
Comment associated with JOSS review openjournals/joss-reviews#9401 (comment)
In the Getting Started tutorial, you use
ani = make_offax_psf_movie(yip, "offax_psf_animation.gif"). This successfully saves a .gif animation, but leavesaniasNonesincemake_offax_psf_moviehas no return. This causes the next line,HTML(ani.to_jshtml()), to error and for the animation not to play within a jupyter notebook. I'm guessing you just need to addreturn aniafter this line, but double check that. Note that the online version of the docs also currently shows the same error, so after a fix, be sure to regenerate those.