Staticaliza commited on
Commit
3faef64
·
verified ·
1 Parent(s): 17e2cc5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -60,7 +60,7 @@ filetypes = {
60
  }
61
 
62
  # Functions
63
- def uniform_sample(sequence, n): return seq[::max(len(sequence) // n,1)][:n]
64
 
65
  def build_image(path): return [Image.open(path).convert("RGB")]
66
 
 
60
  }
61
 
62
  # Functions
63
+ def uniform_sample(sequence, n): return sequence[::max(len(sequence) // n,1)][:n]
64
 
65
  def build_image(path): return [Image.open(path).convert("RGB")]
66