freemt commited on
Commit
423e722
·
1 Parent(s): f922479

Update error_msg

Browse files
Files changed (1) hide show
  1. radiobee/error_msg.py +2 -2
radiobee/error_msg.py CHANGED
@@ -6,9 +6,9 @@ import pandas as pd
6
 
7
 
8
  def error_msg(
9
- msg: Optional[Union[str, Exception]],
10
  title: str = "error message",
11
- ) -> Tuple[str, None], None, None, None, None, None, None]:
12
  """Prepare an error message for gradiobee outputs."""
13
  if msg is None:
14
  msg = "none..."
 
6
 
7
 
8
  def error_msg(
9
+ msg: Optional[str],
10
  title: str = "error message",
11
+ ) -> Tuple[Union[str, None], None, None, None, None, None, None]:
12
  """Prepare an error message for gradiobee outputs."""
13
  if msg is None:
14
  msg = "none..."