aashwinik commited on
Commit
db2ad33
·
verified ·
1 Parent(s): 7570536

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -17,14 +17,14 @@ def validate_userInput(user_input):
17
  def display_board():
18
  col1, col2, col3 = st.columns(3)
19
 
20
- with col1:
21
- st.text(" X ")
22
 
23
- with col2:
24
- st.text(" O ")
25
 
26
- with col3:
27
- st.text(" ... ")
28
 
29
  def reset_legalNumbers():
30
  legal_numbers = [1,2,3,4,5,6,7,8,9]
 
17
  def display_board():
18
  col1, col2, col3 = st.columns(3)
19
 
20
+ with col1:
21
+ st.text(" X ")
22
 
23
+ with col2:
24
+ st.text(" O ")
25
 
26
+ with col3:
27
+ st.text(" ... ")
28
 
29
  def reset_legalNumbers():
30
  legal_numbers = [1,2,3,4,5,6,7,8,9]