We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09fa6c1 commit f1ba386Copy full SHA for f1ba386
.gitignore
@@ -1,3 +1,4 @@
1
/build/
2
/dist/
3
/*.egg-info/
4
+__pycache__
ipyida/kernel.py
@@ -136,7 +136,7 @@ def start(self):
136
main_module = sys.modules['__main__']
137
app.initialize()
138
app.kernel.user_module=main_module
139
-
+ app.kernel.user_ns=main_module.__dict__
140
main = app.kernel.shell._orig_sys_modules_main_mod
141
if main is not None:
142
sys.modules[app.kernel.shell._orig_sys_modules_main_name] = main
0 commit comments