From 038875f876d79d0f1e971886fe42f5bee4f9f31e Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Tue, 21 Aug 2018 20:32:50 -0400 Subject: autopep8 --- lib/svg/realistic_rendering.py | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/svg/realistic_rendering.py') diff --git a/lib/svg/realistic_rendering.py b/lib/svg/realistic_rendering.py index e31534da..5af7e9a6 100644 --- a/lib/svg/realistic_rendering.py +++ b/lib/svg/realistic_rendering.py @@ -102,6 +102,7 @@ realistic_filter = """ """ + def realistic_stitch(start, end): """Generate a stitch vector path given a start and end point.""" -- cgit v1.2.3 From 908f2cd7727e939b87e3f57c1d3a189705de4c94 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Tue, 21 Aug 2018 21:43:09 -0400 Subject: pyflakes fixes --- lib/svg/realistic_rendering.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/svg/realistic_rendering.py') diff --git a/lib/svg/realistic_rendering.py b/lib/svg/realistic_rendering.py index 5af7e9a6..73da3a09 100644 --- a/lib/svg/realistic_rendering.py +++ b/lib/svg/realistic_rendering.py @@ -2,7 +2,7 @@ import simplepath import math from .units import PIXELS_PER_MM -from ..utils import cache, Point +from ..utils import Point # The stitch vector path looks like this: # _______ -- cgit v1.2.3