import parent class

This commit is contained in:
Josh Holtrop 2011-03-29 13:20:38 -04:00
parent fcc5a29855
commit 9e3ca181c7

View File

@ -1,4 +1,6 @@
from Shape import Shape
class Circle(Shape): class Circle(Shape):
def __init__(self, x, y, r): def __init__(self, x, y, r):
self.vars = [x, y, r] self.vars = [x, y, r]