Fix deprecation error on use_column_width.
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ from src import *
|
|
14 |
########################
|
15 |
col1, col2 = st.columns([20,3])
|
16 |
with col2:
|
17 |
-
st.image('logo.png',
|
18 |
with col1:
|
19 |
st.title("Mockingbird")
|
20 |
st.header("A demo of open Text to Speech tools")
|
|
|
14 |
########################
|
15 |
col1, col2 = st.columns([20,3])
|
16 |
with col2:
|
17 |
+
st.image('logo.png', use_container_width=True)
|
18 |
with col1:
|
19 |
st.title("Mockingbird")
|
20 |
st.header("A demo of open Text to Speech tools")
|