Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
This repository was archived by the owner on May 7, 2026. It is now read-only.

Commit 43353e2

Browse filesBrowse 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
Copy full SHA for 43353e2

1 file changed

+1-5Lines changed: 1 addition & 5 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎bigframes/_magics.py‎

Copy file name to clipboardExpand all lines: bigframes/_magics.py
+1-5Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.