CineAI commited on
Commit
42b403c
1 Parent(s): 11552f2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -3,9 +3,9 @@ import numpy as np
3
  import streamlit as st
4
  from st_audiorec import st_audiorec
5
 
6
- def main():
7
- wav_audio_data = st_audiorec()
8
 
 
9
  if wav_audio_data is not None:
10
  st.write(wav_audio_data)
11
 
 
3
  import streamlit as st
4
  from st_audiorec import st_audiorec
5
 
6
+ wav_audio_data = st_audiorec()
 
7
 
8
+ def main():
9
  if wav_audio_data is not None:
10
  st.write(wav_audio_data)
11