Spaces:
Runtime error
Runtime error
File size: 692 Bytes
e84d35a 7b6ee4d e84d35a 423e722 e84d35a 423e722 e84d35a f7bf4bf f922479 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
"""Prepare an error message for gradiobee."""
# pylint: disable=invalid-name
from typing import Optional, Tuple, Union
import pandas as pd
def error_msg(
msg: Optional[str],
title: str = "error message",
) -> Tuple[Union[str, None], None, None, None, None, None, None]:
"""Prepare an error message for gradiobee outputs."""
if msg is None:
msg = "none..."
try:
msg = msg.__str__()
except Exception as exc:
msg = str(exc)
df = pd.DataFrame([msg], columns=[title])
# return df, *((None,) * 4) # pyright complains
# return df, None, None, None, None, None, None, None
return df.to_html(), None, None, None, None, None, None
|