From 934bfcd74e9276df5c32bbd3f2f56194b336e80b Mon Sep 17 00:00:00 2001 From: jan Date: Wed, 6 Sep 2017 01:14:27 -0700 Subject: [PATCH] Clean up type info --- masque/pattern.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/masque/pattern.py b/masque/pattern.py index 1883f5d..9b9c888 100644 --- a/masque/pattern.py +++ b/masque/pattern.py @@ -31,10 +31,9 @@ class Pattern: may reference the same Pattern object. :var name: An identifier for this object. Not necessarily unique. """ - - shapes = List[Shape] - subpatterns = List[SubPattern] - name = str + shapes = None # type: List[Shape] + subpatterns = None # type: List[SubPattern] + name = None # type: str def __init__(self, shapes: List[Shape]=(),