Update app.py
Browse files
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:
|