Skip to content

Commit

Permalink
remove emoji
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-tzayats committed Dec 10, 2024
1 parent ff303f3 commit 8314feb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions journeys/evaluation.py
Original file line number Diff line number Diff line change
Expand Up @@ -491,14 +491,14 @@ def evaluation_data_dialog() -> None:
or not st.session_state["selected_results_eval_schema"]
or not st.session_state["selected_results_eval_table"]
):
st.error("🚨 Please fill in all fields.")
st.error("Please fill in all fields.")
return

if not validate_table_schema(
table=st.session_state["selected_eval_table"],
schema=EVALUATION_TABLE_SCHEMA,
):
st.error(f"🚨 Evaluation table must have schema {EVALUATION_TABLE_SCHEMA}.")
st.error(f"Evaluation table must have schema {EVALUATION_TABLE_SCHEMA}.")
return

if eval_results_existing_table:
Expand All @@ -507,7 +507,7 @@ def evaluation_data_dialog() -> None:
schema=RESULTS_TABLE_SCHEMA,
):
st.error(
f"🚨 Evaluation result table must have schema {RESULTS_TABLE_SCHEMA}."
f"Evaluation result table must have schema {RESULTS_TABLE_SCHEMA}."
)
return

Expand All @@ -518,7 +518,7 @@ def evaluation_data_dialog() -> None:
"selected_results_eval_new_table_no_schema"
],
):
st.error("🚨 Results table already exists")
st.error("Results table already exists")
return

with st.spinner("Creating table..."):
Expand Down

0 comments on commit 8314feb

Please sign in to comment.