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]=(),