Skip to content

Commit d7cd0e3

Browse files
committed
minor
1 parent fb290f3 commit d7cd0e3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

code/pages/0_Data inventory.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def generate_venn(df, venn_preset):
162162
if v.get_patch_by_id(patch_id):
163163
v.get_patch_by_id(patch_id).set_color(patch_setting["color"])
164164
# Add notes
165-
notes.append(f"#### :{patch_setting['emoji']}: :{patch_setting['color']}[{patch_setting['notes']}]")
165+
notes.append(f"##### :{patch_setting['emoji']}: :{patch_setting['color']}[{patch_setting['notes']}]")
166166

167167
return fig, notes
168168

@@ -460,11 +460,11 @@ def add_venn_diagrms(df_merged):
460460
st.markdown("---")
461461
for section in VENN_PRESET:
462462
section_name, section_contents = section["section_name"], section["section_contents"]
463-
st.markdown(f"## {section_name}")
463+
st.markdown(f"### {section_name}")
464464
st.markdown("---")
465465
for i_venn, venn_preset in enumerate(section_contents):
466466
# -- Venn diagrams --
467-
st.markdown(f"### ({i_venn+1}). {venn_preset['name']}")
467+
st.markdown(f"#### ({i_venn+1}). {venn_preset['name']}")
468468
fig, notes = generate_venn(
469469
df_merged,
470470
venn_preset

0 commit comments

Comments
 (0)