awacke1 commited on
Commit
1c4500a
β€’
1 Parent(s): 5d2860f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -97,7 +97,7 @@ def main():
97
  st.header("🎼 Available Songs")
98
  for file in all_files:
99
  song_info = os.path.splitext(file)[0].replace("_", " ")
100
- icol1, icol2 = st.columns([1, 2])
101
  with icol1:
102
  st.markdown("**" + song_info + "**")
103
  with icol2:
 
97
  st.header("🎼 Available Songs")
98
  for file in all_files:
99
  song_info = os.path.splitext(file)[0].replace("_", " ")
100
+ icol1, icol2 = st.columns([1, 3])
101
  with icol1:
102
  st.markdown("**" + song_info + "**")
103
  with icol2: