Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 4422798

Browse files
authored
fix: no longer automatically use anywidget in the %%bqsql magics
1 parent 99d73ef commit 4422798

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

bigframes/_magics.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,4 @@ def _cell_magic(line, cell):
4848
if args.destination_var:
4949
ipython.push({args.destination_var: dataframe})
5050

51-
with bigframes.option_context(
52-
"display.repr_mode",
53-
"anywidget",
54-
):
55-
display(dataframe)
51+
display(dataframe)

0 commit comments

Comments
 (0)