waynebliu

Results 4 comments of waynebliu

I think a simple solution is to wrap try/except around the if IPYTHON_MAIN() line

Ugly workaround: I create my wrapper extension and just catch the exception def load_ipython_extension(ip=None): import importnb, importnb.ipython_extension try: if importnb.ipython_extension.IPYTHON_MAIN(): from importnb.parameterize import Parameterize as Notebook else: from importnb.loader import...

Super annoying. I worked around it by adding this to custom.css: .CodeMirror-scroll { overflow: visible !important; }