From ec68c17a05aa4a3d75fcab069a3b065f473574af Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Mon, 29 May 2023 21:45:31 -0400 Subject: remove debug timing in frequently-run functions --- lib/stitches/running_stitch.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'lib/stitches/running_stitch.py') diff --git a/lib/stitches/running_stitch.py b/lib/stitches/running_stitch.py index 50e3be5f..29e2547d 100644 --- a/lib/stitches/running_stitch.py +++ b/lib/stitches/running_stitch.py @@ -11,7 +11,6 @@ from copy import copy import numpy as np from shapely import geometry as shgeo -from ..debug import debug from ..utils import prng from ..utils.geometry import Point from ..utils.threading import check_stop_flag @@ -248,7 +247,6 @@ def path_to_curves(points: typing.List[Point], min_len: float): return curves -@debug.time def running_stitch(points, stitch_length, tolerance): # Turn a continuous path into a running stitch. stitches = [points[0]] -- cgit v1.2.3