def alexa_right(slots): card_title = 'Navigate: Right' print card_title sys.stdout.flush() kodi.Right() answer = "" return build_alexa_response(answer, card_title)
def alexa_right(slots): print('Going right') sys.stdout.flush() kodi.Right() return build_alexa_response('')
def alexa_right(slots): kodi.Right() return build_alexa_response('')