aboutsummaryrefslogtreecommitdiff
path: root/behaviors/AllPixels.py
blob: e155e555df1eeb897a9e91c5f7d0842200c07f1a (plain)
1
2
3
4
5
6
from operationscore.Behavior import *
class AllPixels(Behavior):
        def processResponse(self, sensorInputs, recursiveInputs):
            for sensory in sensorInputs:#TODO: consider replicating the dict
                sensory['Location'] = 'True'
            return (sensorInputs, recursiveInputs)