1
0
mirror of https://github.com/fHDHR/fHDHR_NextPVR.git synced 2025-12-06 04:36:58 -05:00

Missing __init__.py

This commit is contained in:
deathbybandaid 2021-01-06 09:06:48 -05:00
parent 75a8492dbe
commit e87af73215

View File

@ -0,0 +1,13 @@
from .brython import Brython
from .brython_stdlib import Brython_stdlib
class fHDHR_Brython():
def __init__(self, fhdhr):
self.fhdhr = fhdhr
self.brython = Brython(fhdhr)
self.brython_stdlib = Brython_stdlib(fhdhr)