Johannes commited on
Commit
16fdd22
1 Parent(s): 475f71c

remove argument

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ def resize(img: Image, target_size_px: int):
14
  new_height = target_size_px
15
  new_width = int(target_size_px * aspect_ratio)
16
 
17
- img = img.resize((new_width, new_height), Image.ANTIALIAS)
18
 
19
  return img
20
 
 
14
  new_height = target_size_px
15
  new_width = int(target_size_px * aspect_ratio)
16
 
17
+ img = img.resize((new_width, new_height))
18
 
19
  return img
20