awacke1 commited on
Commit
111a55b
ยท
verified ยท
1 Parent(s): 1908c8f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -90,7 +90,7 @@ specialties = load_specialties()
90
  st.markdown("# ๐Ÿฉบ๐Ÿ” Care Team Finder ")
91
  st.markdown("#### Search for Care Providers by Specialty and Location")
92
 
93
- if st.expander('๐Ÿฉบ Understand Provider Specialties ๐Ÿ“'):
94
  st.markdown('''
95
  ## Discover Care Providers by Specialty & Location: Quick Guide
96
  - **Code**: Unique ID identifies each specialty clearly. ๐Ÿ†”
@@ -130,7 +130,7 @@ def process_files(specialty_codes, specific_state='MN'):
130
  file_to_process = f'./{specific_state}.csv' if use_specific_state else state_files
131
 
132
  for file in [file_to_process] if use_specific_state else state_files:
133
- state_df = pd.read_csv(file, header=None) # Assuming no header for simplicity
134
  #state_df = pd.read_csv(file, header=0) # Assuming no header for simplicity
135
 
136
  for code in specialty_codes:
 
90
  st.markdown("# ๐Ÿฉบ๐Ÿ” Care Team Finder ")
91
  st.markdown("#### Search for Care Providers by Specialty and Location")
92
 
93
+ if st.expander('๐Ÿฉบ Understand Provider Specialties ๐Ÿ“', expanded=False):
94
  st.markdown('''
95
  ## Discover Care Providers by Specialty & Location: Quick Guide
96
  - **Code**: Unique ID identifies each specialty clearly. ๐Ÿ†”
 
130
  file_to_process = f'./{specific_state}.csv' if use_specific_state else state_files
131
 
132
  for file in [file_to_process] if use_specific_state else state_files:
133
+ state_df = pd.read_csv(file, header=None, names=headers) # Assuming no header for simplicity
134
  #state_df = pd.read_csv(file, header=0) # Assuming no header for simplicity
135
 
136
  for code in specialty_codes: