awacke1 commited on
Commit
b653103
β€’
1 Parent(s): b8091cf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -39,7 +39,7 @@ def songupdate():
39
  def load_song_file(filename):
40
  with open(filename, "r") as file:
41
  chord_sheet = file.read()
42
- st.text_area(label="Enhanced Chord Sheet", value=chord_sheet, chord_sheet, height=300, key="EnhancedChordSheet" help="This text can be read due to alternating chord lines and lyric lines.", label_visibility="visible", on_change=songupdate )
43
  processed_sheet = process_chord_sheet(chord_sheet)
44
  st.markdown(processed_sheet, unsafe_allow_html=True)
45
 
 
39
  def load_song_file(filename):
40
  with open(filename, "r") as file:
41
  chord_sheet = file.read()
42
+ st.text_area(label="Enhanced Chord Sheet", value=chord_sheet, height=300, key="EnhancedChordSheet", help="This text can be read due to alternating chord lines and lyric lines.", label_visibility="visible", on_change=songupdate )
43
  processed_sheet = process_chord_sheet(chord_sheet)
44
  st.markdown(processed_sheet, unsafe_allow_html=True)
45