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
# _repr_html_ stub is missing so mypy thinks it's a Series. Ignore mypy.
755
-
html_string=pandas_df._repr_html_() # type:ignore
767
+
# Allows to preview images in the DataFrame. The implementation changes the string repr as well, that it doesn't truncate strings or escape html charaters such as "<" and ">". We may need to implement a full-fledged repr module to better support types not in pandas.
768
+
ifbigframes.options.experiments.blob:
769
+
770
+
defurl_to_image_html(url: str) ->str:
771
+
# url is a json string, which already contains double-quotes ""
0 commit comments