コード例 #1
0
ファイル: HVACagent.py プロジェクト: rvilalta/iotworld
 def delete(self, ):
     print "Delete operation of resource: HVAC"
     try:
         response=HvacImpl.delete()
     except KeyError as inst:
         return NotFoundError(inst.args[0] + " not found")
     else:
         return Successful('Successful operation')