From 9d35c449e9ba80c2753e2972c538c0327da32a43 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Mon, 13 Sep 2021 18:58:41 +0200 Subject: [PATCH] fd --- files/helpers/images.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/helpers/images.py b/files/helpers/images.py index 15978e104..af124a7fe 100644 --- a/files/helpers/images.py +++ b/files/helpers/images.py @@ -22,7 +22,7 @@ def upload_ibb(file=None, resize=False): def thumbnails(frames): for frame in frames: thumbnail = frame.copy() - : thumbnail.thumbnail(100, 100, IImage.ANTIALIAS) + thumbnail.thumbnail(100, 100, IImage.ANTIALIAS) yield thumbnail frames = thumbnails(frames)