You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bigframes/dataframe.py
+37-4Lines changed: 37 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,7 @@
23
23
importre
24
24
importsys
25
25
importtextwrap
26
+
importtraceback
26
27
importtyping
27
28
fromtypingimport (
28
29
Callable,
@@ -814,7 +815,9 @@ def _repr_html_(self) -> str:
814
815
except (AttributeError, ValueError, ImportError):
815
816
# Fallback if anywidget is not available
816
817
warnings.warn(
817
-
"Anywidget mode is not available. Please `pip install anywidget traitlets` or `pip install 'bigframes[anywidget]'` to use interactive tables. Falling back to deferred mode."
818
+
"Anywidget mode is not available. "
819
+
"Please `pip install anywidget traitlets` or `pip install 'bigframes[anywidget]'` to use interactive tables. "
820
+
f"Falling back to deferred mode. Error: {traceback.format_exc()}"
0 commit comments