aboutsummaryrefslogtreecommitdiff
path: root/behaviors/AllPixelsLeft.py
diff options
context:
space:
mode:
Diffstat (limited to 'behaviors/AllPixelsLeft.py')
-rw-r--r--behaviors/AllPixelsLeft.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/behaviors/AllPixelsLeft.py b/behaviors/AllPixelsLeft.py
index e1f4080..b48bfc1 100644
--- a/behaviors/AllPixelsLeft.py
+++ b/behaviors/AllPixelsLeft.py
@@ -5,5 +5,5 @@ class AllPixelsLeft(Behavior):
def processResponse(self, sensorInputs, recursiveInputs):
for sensory in sensorInputs:
xLoc = sensory['Location'][0]
- sensory['Location'] = '[{x}<' + str(xLoc) + ']'
+ sensory['Location'] = '{x}<' + str(xLoc)
return (sensorInputs, recursiveInputs)