vodkaslime commited on
Commit
25d2916
·
unverified ·
1 Parent(s): db5635b

fix button

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -3,6 +3,6 @@ import streamlit as st
3
  x = st.slider("Select a value")
4
  st.write(x, "squared is", x * x)
5
 
6
- b = st.button()
7
  if b:
8
  st.write("button clicked")
 
3
  x = st.slider("Select a value")
4
  st.write(x, "squared is", x * x)
5
 
6
+ b = st.button("Button")
7
  if b:
8
  st.write("button clicked")