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