---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
File /opt/hostedtoolcache/Python/3.13.5/x64/lib/python3.13/site-packages/IPython/core/formatters.py:406, in BaseFormatter.__call__(self, obj)
404 method = get_real_method(obj, self.print_method)
405 if method is not None:
--> 406 return method()
407 return None
408 else:
File /opt/hostedtoolcache/Python/3.13.5/x64/lib/python3.13/site-packages/itables/javascript.py:316, in _datatables_repr_(df)
315 def _datatables_repr_(df: DataFrameOrSeries) -> str:
--> 316 return to_html_datatable(df, connected=_CONNECTED)
File /opt/hostedtoolcache/Python/3.13.5/x64/lib/python3.13/site-packages/itables/javascript.py:331, in to_html_datatable(df, caption, **kwargs)
324 """
325 Return the HTML representation of the given
326 dataframe as an interactive datatable
327 """
328 kwargs["table_id"] = table_id = check_table_id(
329 kwargs.pop("table_id", None), kwargs, df=df
330 )
--> 331 dt_args = get_itable_arguments(df, caption, **kwargs)
332 dt_url = dt_args.pop("dt_url")
333 connected = dt_args.pop("connected")
File /opt/hostedtoolcache/Python/3.13.5/x64/lib/python3.13/site-packages/itables/javascript.py:468, in get_itable_arguments(***failed resolving arguments***)
466 if pd_style is not None and isinstance(df, pd_style.Styler):
467 if not allow_html:
--> 468 raise ValueError(
469 "Pandas Styler objects always use HTML. Please make sure that you trust the "
470 "content of that table. If so, please render it with allow_html=True, cf. "
471 "https://mwouts.github.io/itables/options/allow_html.html."
472 )
473 if not showIndex:
474 try:
ValueError: Pandas Styler objects always use HTML. Please make sure that you trust the content of that table. If so, please render it with allow_html=True, cf. https://mwouts.github.io/itables/options/allow_html.html.
<pandas.io.formats.style.Styler at 0x7f221781c980>