Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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
|
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}")
|