From e87af7321562dbd06c7c4f9735b96a4d89eb514c Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Wed, 6 Jan 2021 09:06:48 -0500 Subject: [PATCH] Missing __init__.py --- fHDHR_web/brython/__init__.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 fHDHR_web/brython/__init__.py diff --git a/fHDHR_web/brython/__init__.py b/fHDHR_web/brython/__init__.py new file mode 100644 index 0000000..9fdfbaf --- /dev/null +++ b/fHDHR_web/brython/__init__.py @@ -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)