Skip to content

Commit 43353e2

Browse files
authored
fix: no longer automatically use anywidget in the %%bqsql magics (#2504)
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/python-bigquery-dataframes/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [ ] Ensure the tests and linter pass - [ ] Code coverage does not decrease (if any source code was changed) - [ ] Appropriate docs were updated (if necessary) Fixes internal issue b/491124704 🦕
1 parent 34892e2 commit 43353e2

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)