722c84c87f
NextPVR 6.1.1 for netcore 6.0
17 lines
342 B
Python
17 lines
342 B
Python
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
import xbmc
|
|
import xbmcaddon
|
|
|
|
class Monitor(xbmc.Monitor):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
xbmc.Monitor.__init__(self)
|
|
|
|
def onSettingsChanged(self):
|
|
pass
|
|
|
|
if __name__ == "__main__":
|
|
Monitor().waitForAbort()
|