From 5da55ac7eeae21ee0ca3149bed99c95383397f05 Mon Sep 17 00:00:00 2001 From: Joe Wreschnig Date: Fri, 19 Mar 2010 22:03:52 -0700 Subject: [PATCH] Remove unused argument. --- bulletml/impl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bulletml/impl.py b/bulletml/impl.py index e800810..938e9e2 100644 --- a/bulletml/impl.py +++ b/bulletml/impl.py @@ -175,7 +175,7 @@ class Action(object): y += off_y bullet = owner.__class__( - x, y, direction, speed, owner.target, actions, self, rank) + x, y, direction, speed, owner.target, actions, rank) created.append(bullet) elif isinstance(action, parser.ChangeSpeed): @@ -290,7 +290,7 @@ class Bullet(object): """ def __init__(self, x=0, y=0, direction=0, speed=0, target=None, - actions=(), parent=None, rank=0.5, Action=Action): + actions=(), rank=0.5, Action=Action): self.x = self.px = x self.y = self.py = y self.mx = 0 -- 2.20.1