pachet commited on
Commit
479cb41
·
1 Parent(s): 45d6604

Add app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -233,8 +233,8 @@ class HexachordApp:
233
  hexa_string = ''
234
  start_note = note.Note('C3')
235
  for i in int_array:
236
- start_note = start_note.transpose(int(i))
237
- hexa_string = hexa_string + ' ' + start_note.nameWithOctave
238
  return hexa_string
239
 
240
 
 
233
  hexa_string = ''
234
  start_note = note.Note('C3')
235
  for i in int_array:
236
+ add_note = start_note.transpose(int(i))
237
+ hexa_string = hexa_string + ' ' + add_note.nameWithOctave
238
  return hexa_string
239
 
240