According to documentation labels are optional for number_input but it doesn’t seem to be working. Am I doing something wrong here?
Code:
col3, col4 = st.sidebar.beta_columns([.3,1])
test1 = col3.write("Input")
test2 = col4.number_input()
Error:
TypeError: number_input() missing 1 required positional argument: ‘label’
Parameters:
- label ( str or None ) – A short label explaining to the user what this input is for.