Skip to content

Commit

Permalink
update Pillow constant
Browse files Browse the repository at this point in the history
  • Loading branch information
sheppard committed Aug 25, 2023
1 parent fbe09e1 commit f4e38a1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[![wq.build][logo]][docs]

[**wq.build**][docs] (fomerly wq.core) provides the `wq` command line application for use with [wq.app] and other modules in the [wq framework].
[**wq.build**][docs] provides the `wq` command line application for use with [wq.app] and other modules in the [wq framework].

[![Latest PyPI Release](https://img.shields.io/pypi/v/wq.build.svg)](https://pypi.org/project/wq.build)
[![Release Notes](https://img.shields.io/github/release/wq/wq.build.svg)](https://github.com/wq/wq.build/releases)
[![Documentation](https://img.shields.io/badge/Docs-1.3-blue.svg)][docs]
[![Documentation](https://img.shields.io/badge/Docs-2.0-blue.svg)][docs]
[![License](https://img.shields.io/pypi/l/wq.build.svg)](https://wq.io/license)
[![GitHub Stars](https://img.shields.io/github/stars/wq/wq.build.svg)](https://github.com/wq/wq.build/stargazers)
[![GitHub Forks](https://img.shields.io/github/forks/wq/wq.build.svg)](https://github.com/wq/wq.build/network)
Expand Down
2 changes: 1 addition & 1 deletion wq/build/commands/collect.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def readfiles(basedir, ftype=None, fext=None):
if path == basedir:
path = ""
else:
path = path[len(basedir) + 1:]
path = path[len(basedir) + 1 :]
apath = path.split(os.sep)
for subdir in apath:
o = o[subdir]
Expand Down
2 changes: 1 addition & 1 deletion wq/build/commands/icons.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def sortkey(size):
continue

icon = img.copy()
icon.thumbnail((minsize, minsize), Image.ANTIALIAS)
icon.thumbnail((minsize, minsize), Image.LANCZOS)
if icon.width < width or icon.height < height:
lrpad = width - icon.width
left = lrpad // 2
Expand Down

0 comments on commit f4e38a1

Please sign in to comment.