From 2aa89e82f096b341615432eda111559cc157c778 Mon Sep 17 00:00:00 2001 From: Walter Bender Date: Wed, 26 Jun 2013 11:32:49 +0000 Subject: pep8, pyflakes cleanup --- (limited to 'TurtleArt/tacollaboration.py') diff --git a/TurtleArt/tacollaboration.py b/TurtleArt/tacollaboration.py index 347c806..84ad4db 100644 --- a/TurtleArt/tacollaboration.py +++ b/TurtleArt/tacollaboration.py @@ -286,15 +286,15 @@ class Collaboration(): else: put_pen_back_down = False self.send_event('x|%s' % (data_to_string( - [self._get_nick(), - [int(self._tw.turtles.get_active_turtle().get_xy()[0]), - int(self._tw.turtles.get_active_turtle().get_xy()[1])]]))) + [self._get_nick(), + [int(self._tw.turtles.get_active_turtle().get_xy()[0]), + int(self._tw.turtles.get_active_turtle().get_xy()[1])]]))) if put_pen_back_down: self.send_event('p|%s' % (data_to_string([self._get_nick(), True]))) self.send_event('r|%s' % (data_to_string( - [self._get_nick(), - int(self._tw.turtles.get_active_turtle().get_heading())]))) + [self._get_nick(), + int(self._tw.turtles.get_active_turtle().get_heading())]))) def _reskin_turtle(self, payload): if len(payload) > 0: -- cgit v0.9.1