Circularmachines commited on
Commit
23f9025
·
1 Parent(s): fdef182

app.py updates

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -44,10 +44,10 @@ if "draw" not in st.session_state:
44
 
45
  def patch(ij):
46
  st.write(ij)
47
- img=ij//(36*36)
48
  p=ij%(36*36)
49
 
50
- imm=ds[img]['image']
51
 
52
  x=p//36
53
  y=p%36
 
44
 
45
  def patch(ij):
46
  st.write(ij)
47
+ immg=ij//(36*36)
48
  p=ij%(36*36)
49
 
50
+ imm=ds[immg]['image']
51
 
52
  x=p//36
53
  y=p%36