awacke1 commited on
Commit
9dfacde
·
1 Parent(s): e95063c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -210,7 +210,7 @@ def display_homunculus_parts2():
210
  for part in container_parts:
211
  with st.expander(f"{homunculus_parts2[part]} {part}", expanded=False):
212
  col1, col2 = st.columns(2)
213
- for subpart in homunculus_parts.keys():
214
  if subpart.startswith(part.split(" ")[0]):
215
  col = col1 if "Left" in subpart or part in container_parts else col2
216
  col.write(f"{homunculus_parts2[subpart]} {subpart}")
 
210
  for part in container_parts:
211
  with st.expander(f"{homunculus_parts2[part]} {part}", expanded=False):
212
  col1, col2 = st.columns(2)
213
+ for subpart in homunculus_parts2.keys():
214
  if subpart.startswith(part.split(" ")[0]):
215
  col = col1 if "Left" in subpart or part in container_parts else col2
216
  col.write(f"{homunculus_parts2[subpart]} {subpart}")