1
0
This repository has been archived on 2024-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
emveepee 722c84c87f NextPVR: add new addon package
NextPVR 6.1.1 for netcore 6.0
2022-12-29 08:21:37 -05:00

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()