From 0aa4a6ee7a9e3bacecab9f362921304856d4ddd8 Mon Sep 17 00:00:00 2001 From: jan Date: Fri, 13 Oct 2023 00:31:00 -0700 Subject: [PATCH] doc updates --- README.md | 3 --- masque/shapes/shape.py | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index dd67a1c..9a734c8 100644 --- a/README.md +++ b/README.md @@ -130,7 +130,6 @@ abstract = library <= tree my_pattern.place(abstract, ...) # or - my_pattern.place(library << make_tree(...), ...) ``` @@ -169,8 +168,6 @@ has_input = ('input' in pattern) # Error! ``` - - ## TODO * Better interface for polygon operations (e.g. with `pyclipper`) diff --git a/masque/shapes/shape.py b/masque/shapes/shape.py index 1cf811a..d65c05b 100644 --- a/masque/shapes/shape.py +++ b/masque/shapes/shape.py @@ -30,7 +30,7 @@ class Shape(PositionableImpl, Rotatable, Mirrorable, Copyable, Scalable, """ Class specifying functions common to all shapes. """ - __slots__ = () # Children should use AutoSlots + __slots__ = () # Children should use AutoSlots or set slots themselves def __copy__(self) -> Self: cls = self.__class__