Dusduo commited on
Commit
6b216c6
1 Parent(s): 96b7f81

small change for base image

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -65,12 +65,11 @@ st.title("Gotta Classify 'Em All - 1st Generation Pokedex -")
65
  # For newline
66
  st.write('\n')
67
 
68
- image = Image.open('anime1.jpeg')
69
 
70
  col1, col2 = st.columns([3,1]) # [3,1]
71
 
72
  with col1:
73
- image = Image.open('anime1.jpeg')
74
  show = st.image(image, use_column_width=True)
75
 
76
 
 
65
  # For newline
66
  st.write('\n')
67
 
 
68
 
69
  col1, col2 = st.columns([3,1]) # [3,1]
70
 
71
  with col1:
72
+ image = Image.open('base.jpg')
73
  show = st.image(image, use_column_width=True)
74
 
75