Create palette from config and add default config

This commit is contained in:
Joscha 2019-05-16 11:12:39 +00:00
parent 5cfdb8f8e2
commit bc203aaff1
3 changed files with 58 additions and 13 deletions

View file

@ -1,8 +1,8 @@
from typing import List
from .palette import *
from .single_room_application import *
from .util import *
__all__: List[str] = []
__all__ += palette.__all__
__all__ += single_room_application.__all__
__all__ += util.__all__