Spaces:
Runtime error
Runtime error
freemt
commited on
Commit
·
f7bf4bf
1
Parent(s):
d6268f4
Remove out_plot in fn gradiobeegradiobee, need to modify all return in gradiobee and error_msg's return
Browse files- radiobee/error_msg.py +3 -2
- radiobee/gradiobee.py +3 -2
radiobee/error_msg.py
CHANGED
@@ -8,7 +8,7 @@ import pandas as pd
|
|
8 |
def error_msg(
|
9 |
msg: Optional[Union[str, Exception]],
|
10 |
title: str = "error message",
|
11 |
-
) -> Tuple[Union[pd.DataFrame, None], None, None, None, None, None, None
|
12 |
"""Prepare an error message for gradiobee outputs."""
|
13 |
if msg is None:
|
14 |
msg = "none..."
|
@@ -21,4 +21,5 @@ def error_msg(
|
|
21 |
df = pd.DataFrame([msg], columns=[title])
|
22 |
|
23 |
# return df, *((None,) * 4) # pyright complains
|
24 |
-
return df, None, None, None, None, None, None, None
|
|
|
|
8 |
def error_msg(
|
9 |
msg: Optional[Union[str, Exception]],
|
10 |
title: str = "error message",
|
11 |
+
) -> Tuple[Union[pd.DataFrame, None], None, None, None, None, None, None]:
|
12 |
"""Prepare an error message for gradiobee outputs."""
|
13 |
if msg is None:
|
14 |
msg = "none..."
|
|
|
21 |
df = pd.DataFrame([msg], columns=[title])
|
22 |
|
23 |
# return df, *((None,) * 4) # pyright complains
|
24 |
+
# return df, None, None, None, None, None, None, None
|
25 |
+
return df, None, None, None, None, None, None
|
radiobee/gradiobee.py
CHANGED
@@ -444,7 +444,8 @@ def gradiobee( # noqa
|
|
444 |
# ### sent-ali-algo is None: para align
|
445 |
if sent_ali_algo in ["None"]:
|
446 |
ic("returning para-ali outputs")
|
447 |
-
return df_trimmed, output_plot, file_dl, file_dl_xlsx, None, None, df_aligned, df_html
|
|
|
448 |
|
449 |
# ### proceed with sent align
|
450 |
if sent_ali_algo in ["fast"]:
|
@@ -504,5 +505,5 @@ def gradiobee( # noqa
|
|
504 |
|
505 |
# return df_trimmed, output_plot, file_dl, file_dl_xlsx, file_dl_sents, file_dl_xlsx_sents, df_aligned_sents, df_html
|
506 |
|
507 |
-
# remove output_plot
|
508 |
return df_trimmed, file_dl, file_dl_xlsx, file_dl_sents, file_dl_xlsx_sents, df_aligned_sents, df_html
|
|
|
444 |
# ### sent-ali-algo is None: para align
|
445 |
if sent_ali_algo in ["None"]:
|
446 |
ic("returning para-ali outputs")
|
447 |
+
# return df_trimmed, output_plot, file_dl, file_dl_xlsx, None, None, df_aligned, df_html
|
448 |
+
return df_trimmed, file_dl, file_dl_xlsx, None, None, df_aligned, df_html
|
449 |
|
450 |
# ### proceed with sent align
|
451 |
if sent_ali_algo in ["fast"]:
|
|
|
505 |
|
506 |
# return df_trimmed, output_plot, file_dl, file_dl_xlsx, file_dl_sents, file_dl_xlsx_sents, df_aligned_sents, df_html
|
507 |
|
508 |
+
# remove output_plot, need to modify all return and error_msg.error_msg
|
509 |
return df_trimmed, file_dl, file_dl_xlsx, file_dl_sents, file_dl_xlsx_sents, df_aligned_sents, df_html
|