From: Joe Wreschnig Date: Tue, 16 Mar 2010 05:45:44 +0000 (-0700) Subject: Accel: Better call return data. X-Git-Url: https://git.yukkurigames.com/?p=python-bulletml.git;a=commitdiff_plain;h=a7295f6fd71242322dd1bad19a90462c188f153f;hp=9104092535823794c1b00f3c0fb16f5181992a00 Accel: Better call return data. --- diff --git a/bulletml/parser.py b/bulletml/parser.py index 0af6694..8bea044 100644 --- a/bulletml/parser.py +++ b/bulletml/parser.py @@ -181,10 +181,8 @@ class Accel(object): def __call__(self, params, rank): frames = self.term(params, rank) - horizontal = self.horizontal and ( - self.horizontal(params, rank), self.horizontal.type) - vertical = self.vertical and ( - self.vertical(params, rank), self.vertical.type) + horizontal = self.horizontal and self.horizontal(params, rank) + vertical = self.vertical and self.vertical(params, rank) return frames, horizontal, vertical def __repr__(self):