From 9e3ca181c7f7a5cb119943f2222c6e25ee1fbea1 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Tue, 29 Mar 2011 13:20:38 -0400 Subject: [PATCH] import parent class --- Circle.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Circle.py b/Circle.py index f0b18d1..fecb6df 100644 --- a/Circle.py +++ b/Circle.py @@ -1,4 +1,6 @@ +from Shape import Shape + class Circle(Shape): def __init__(self, x, y, r): self.vars = [x, y, r]