summaryrefslogtreecommitdiff
path: root/examples/imagepipe/imagepipe.py
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2020-03-06 14:38:03 -0800
committerDavid Lord <davidism@gmail.com>2020-03-06 14:38:03 -0800
commit5f75f9ec38ccf2ddac4e6b92cc07fec6d9b1b7e0 (patch)
treeaa8b7c6a539db2615e659ae81fa42af7527a78ea /examples/imagepipe/imagepipe.py
parent93ba3ba112d2f8ba7bdd8b231e510f74dd0b037e (diff)
downloadclick-5f75f9ec38ccf2ddac4e6b92cc07fec6d9b1b7e0.tar.gz
apply flake8
Diffstat (limited to 'examples/imagepipe/imagepipe.py')
-rw-r--r--examples/imagepipe/imagepipe.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/imagepipe/imagepipe.py b/examples/imagepipe/imagepipe.py
index 9249116..2cde2f6 100644
--- a/examples/imagepipe/imagepipe.py
+++ b/examples/imagepipe/imagepipe.py
@@ -235,7 +235,7 @@ def smoothen_cmd(images, iterations):
'Smoothening "%s" %d time%s'
% (image.filename, iterations, iterations != 1 and "s" or "",)
)
- for x in xrange(iterations):
+ for _ in range(iterations):
image = copy_filename(image.filter(ImageFilter.BLUR), image)
yield image