From a14f648cb313e31359990d5fb7662dcac9e9849a Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Tue, 19 Nov 2019 17:31:47 -0600 Subject: [PATCH] Prepare some packages to be imported correctly by cx_freeze --- src/interactors/__init__.py | 1 + src/presenters/__init__.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/interactors/__init__.py b/src/interactors/__init__.py index 37c3f3f..dff7153 100644 --- a/src/interactors/__init__.py +++ b/src/interactors/__init__.py @@ -1,3 +1,4 @@ +from .base import * from .attach import * from . audioRecorder import * from . blacklist import * diff --git a/src/presenters/__init__.py b/src/presenters/__init__.py index e470733..78017fb 100644 --- a/src/presenters/__init__.py +++ b/src/presenters/__init__.py @@ -11,6 +11,8 @@ By using this design pattern it allows more decoupled code, easier testing (as we don't need to instantiate the views) and easy to switch (or add) a new graphical user interface by replacing interactors and views. """ +from . import player +from .base import * from .attach import * from .audioRecorder import * from .blacklist import *