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

Merge pull request #111 from deathbybandaid/dev

Missing __init__.py
This commit is contained in:
Deathbybandaid 2021-01-06 09:14:39 -05:00 committed by GitHub
commit 0441e731d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)