Skip to content

Commit 6665cd9

Browse files
authored
Merge pull request #205 from hugovk/no-exclude
No need to exclude signac.png, it's now under 160px
2 parents 7a47cdf + 64d338b commit 6665cd9

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)