aboutsummaryrefslogtreecommitdiff
path: root/behaviors/DebugBehavior.py
blob: a00346b90e57748d3b3c03cfd352948c41d78e74 (plain)
1
2
3
4
5
6
7
from operationscore.Behavior import * 
import pdb
class DebugBehavior(Behavior):
    def processResponse(self, sensorInputs, recursiveInputs):
        if sensorInputs != []:
            print 'Sensor Inputs: ', sensorInputs
        return []