aashwinik commited on
Commit
5f4fc3b
·
verified ·
1 Parent(s): 8ef9f1b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,8 +1,8 @@
1
  import streamlit as st
2
 
3
  def get_userInput(): #from the UI App
4
- input_text = st.text_input("Enter a number: ", key="input")
5
- return input_text
6
 
7
  def validate_userInput(user_input):
8
  if user_input.isdigit():
 
1
  import streamlit as st
2
 
3
  def get_userInput(): #from the UI App
4
+ input = st.text_input("Enter a number: ", key="input")
5
+ return input
6
 
7
  def validate_userInput(user_input):
8
  if user_input.isdigit():