Skip to content

Commit 14b3fbf

Browse files
committed
Fix %%sql cells in %run_shared magic
1 parent 1b5fd9d commit 14b3fbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

singlestoredb/magics/run_shared.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def run_shared(self, line: str, local_ns: Any = None) -> Any:
5656
# Run the downloaded file
5757
with preserve_keys(self.shell.user_ns, '__file__'):
5858
self.shell.user_ns['__file__'] = temp_file_path
59-
self.shell.safe_execfile_ipy(temp_file_path, raise_exceptions=True)
59+
self.safe_execfile_ipy(temp_file_path, raise_exceptions=True)
6060

6161
def safe_execfile_ipy(
6262
self,

0 commit comments

Comments
 (0)