Create better launch script

This commit is contained in:
Joscha 2019-06-21 08:23:04 +00:00
parent cd90649111
commit 6ecdd96206
3 changed files with 100 additions and 27 deletions

View file

@ -3,6 +3,7 @@ from typing import List
from .edit_widgets import *
from .euph_config import *
from .euph_renderer import *
from .launch_application import *
from .room_widget import *
from .single_room_application import *
from .user_list_widget import *
@ -12,6 +13,7 @@ __all__: List[str] = []
__all__ += edit_widgets.__all__
__all__ += euph_config.__all__
__all__ += euph_renderer.__all__
__all__ += launch_application.__all__
__all__ += room_widget.__all__
__all__ += single_room_application.__all__
__all__ += user_list_widget.__all__