(self, thumbnail, format, progressive, **kwargs)
| 1990 | return super().delete() |
| 1991 | |
| 1992 | def _put_thumbnail(self, thumbnail, format, progressive, **kwargs): |
| 1993 | w, h = thumbnail.size |
| 1994 | |
| 1995 | io = BytesIO() |
| 1996 | thumbnail.save(io, format, progressive=progressive) |
| 1997 | io.seek(0) |
| 1998 | |
| 1999 | return self.fs.put(io, width=w, height=h, format=format, **kwargs) |
| 2000 | |
| 2001 | @property |
| 2002 | def size(self): |