---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
File /opt/hostedtoolcache/Python/3.13.3/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.3/x64/lib/python3.13/site-packages/itables/javascript.py:312, in _datatables_repr_(df)
311 def _datatables_repr_(df):
--> 312 return to_html_datatable(df, connected=_CONNECTED)
File /opt/hostedtoolcache/Python/3.13.3/x64/lib/python3.13/site-packages/itables/javascript.py:339, in to_html_datatable(df, *args, **kwargs)
332 """
333 Return the HTML representation of the given
334 dataframe as an interactive datatable
335 """
336 kwargs["table_id"] = table_id = check_table_id(
337 kwargs.pop("table_id", None), kwargs, df=df
338 )
--> 339 dt_args = get_itable_arguments(df, *args, **kwargs)
340 dt_url = dt_args.pop("dt_url")
341 connected = dt_args.pop("connected")
File /opt/hostedtoolcache/Python/3.13.3/x64/lib/python3.13/site-packages/itables/javascript.py:461, in get_itable_arguments(***failed resolving arguments***)
459 if pd_style is not None and isinstance(df, pd_style.Styler):
460 if not allow_html:
--> 461 raise ValueError(
462 "Pandas Styler objects always use HTML. Please make sure that you trust the "
463 "content of that table. If so, please render it with allow_html=True, cf. "
464 "https://mwouts.github.io/itables/options/allow_html.html."
465 )
466 if not showIndex:
467 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 0x7f7406ef46e0>