This commit is contained in:
tomkat83 2017-12-08 20:35:32 +01:00
parent dfdc6eefd0
commit 9380a23867

View file

@ -193,49 +193,49 @@ def skipprevious():
def input_up(): def input_up():
""" """
Tells Kodi the users pushed up Tells Kodi the user pushed up
""" """
jsonrpc("Input.Up").execute() jsonrpc("Input.Up").execute()
def input_down(): def input_down():
""" """
Tells Kodi the users pushed down Tells Kodi the user pushed down
""" """
jsonrpc("Input.Down").execute() jsonrpc("Input.Down").execute()
def input_left(): def input_left():
""" """
Tells Kodi the users pushed left Tells Kodi the user pushed left
""" """
jsonrpc("Input.Left").execute() jsonrpc("Input.Left").execute()
def input_right(): def input_right():
""" """
Tells Kodi the users pushed left Tells Kodi the user pushed left
""" """
jsonrpc("Input.Right").execute() jsonrpc("Input.Right").execute()
def input_select(): def input_select():
""" """
Tells Kodi the users pushed select Tells Kodi the user pushed select
""" """
jsonrpc("Input.Select").execute() jsonrpc("Input.Select").execute()
def input_home(): def input_home():
""" """
Tells Kodi the users pushed home Tells Kodi the user pushed home
""" """
jsonrpc("Input.Home").execute() jsonrpc("Input.Home").execute()
def input_back(): def input_back():
""" """
Tells Kodi the users pushed back Tells Kodi the user pushed back
""" """
jsonrpc("Input.Back").execute() jsonrpc("Input.Back").execute()