From 57aafe2b27966cd5f75795d4c0886056c2d51353 Mon Sep 17 00:00:00 2001 From: Chun Ly Date: Sun, 18 Jul 2021 15:35:38 -0700 Subject: [PATCH] Minor fix with missing quote --- salary_app/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/salary_app/views.py b/salary_app/views.py index 4f90a72..b7e54ab 100644 --- a/salary_app/views.py +++ b/salary_app/views.py @@ -200,7 +200,8 @@ def individual_search_page(data_dict: dict, unique_df: pd.DataFrame): st.write(""" You can search across multiple fiscal years for a number of individuals. - TIP: Easier to find by entering the full name as "LastName,FirstName""") + TIP: Easier to find by entering the full name as "LastName,FirstName" + """) list_names = unique_df['Name'] names_select = st.multiselect('', list_names)