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 cc2118b commit ca29dc9Copy full SHA for ca29dc9
piccolo/apps/playground/commands/run.py
@@ -175,4 +175,7 @@ def run(
175
print("\n")
176
177
populate()
178
- IPython.embed()
+
179
+ from IPython.core.interactiveshell import _asyncio_runner
180
181
+ IPython.embed(using=_asyncio_runner)
piccolo/apps/shell/commands/run.py
@@ -19,7 +19,9 @@ def start_ipython_shell(**tables: t.Dict[str, t.Type[Table]]):
19
if table_class_name not in existing_global_names:
20
globals()[table_class_name] = table_class
21
22
23
24
25
26
27
def run():
0 commit comments