From 0c9f13d766f89d25cd0d5a078b3bde1503791dd8 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Sat, 10 Aug 2019 21:46:25 -0400 Subject: remove STOP at the end --- lib/stitch_plan/stitch_plan.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib/stitch_plan') diff --git a/lib/stitch_plan/stitch_plan.py b/lib/stitch_plan/stitch_plan.py index c62ebe98..ac6b3b8d 100644 --- a/lib/stitch_plan/stitch_plan.py +++ b/lib/stitch_plan/stitch_plan.py @@ -169,6 +169,12 @@ class ColorBlock(object): def __repr__(self): return "ColorBlock(%s, %s)" % (self.color, self.stitches) + def __getitem__(self, item): + return self.stitches[item] + + def __delitem__(self, item): + del self.stitches[item] + def has_color(self): return self._color is not None -- cgit v1.2.3