Circularmachines commited on
Commit
3e5bcf7
·
1 Parent(s): 0db495d

app.py updates

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -49,8 +49,8 @@ def patch(ij):
49
 
50
  imm=ds[int(immg)]['image']
51
 
52
- x=p//36
53
- y=p%36
54
  imc=imm.crop((x*16,y*16,(x+1)*16,(y+1)*16))
55
  return imc
56
 
 
49
 
50
  imm=ds[int(immg)]['image']
51
 
52
+ y=p//36
53
+ x=p%36
54
  imc=imm.crop((x*16,y*16,(x+1)*16,(y+1)*16))
55
  return imc
56