Skip to content

Commit 64d338b

Browse files
committed
No need to exclude, it's now under 160px
1 parent 7a47cdf commit 64d338b

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

scripts/thumbnail-images.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,7 @@
99

1010
max_size = 320, 160
1111

12-
# Exclude these images from thumbnailing
13-
excludes = ["assets/signac.png"]
14-
1512
for infile in glob.glob("assets/*.png"):
16-
if infile in excludes:
17-
continue
1813
im = Image.open(infile)
1914
if im.width <= max_size[0] and im.height <= max_size[1]:
2015
continue

0 commit comments

Comments
 (0)