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 9980a63 commit a9caa5dCopy full SHA for a9caa5d
singlestoredb/magics/run_shared.py
@@ -113,13 +113,15 @@ def get_cells() -> Any:
113
with prepended_to_syspath(dname):
114
try:
115
for cell in get_cells():
116
- result = self.run_cell(cell, silent=True, shell_futures=shell_futures)
+ result = self.shell.run_cell(
117
+ cell, silent=True, shell_futures=shell_futures,
118
+ )
119
if raise_exceptions:
120
result.raise_error()
121
elif not result.success:
122
break
123
except Exception:
124
125
raise
- self.showtraceback()
126
+ self.shell.showtraceback()
127
warn('Unknown failure executing file: <%s>' % fpath)
0 commit comments