Add ShouldNeverHappen exception

This commit is contained in:
Joscha 2019-06-07 17:30:50 +00:00
parent a9ddf27525
commit d8ee20c402
4 changed files with 16 additions and 6 deletions

View file

@ -7,6 +7,7 @@ from .cursor_rendering import *
from .cursor_tree_widget import *
from .element import *
from .element_supply import *
from .exceptions import *
from .markup import *
from .rendered_element_cache import *
@ -19,5 +20,6 @@ __all__ += cursor_rendering.__all__
__all__ += cursor_tree_widget.__all__
__all__ += element.__all__
__all__ += element_supply.__all__
__all__ += exceptions.__all__
__all__ += markup.__all__
__all__ += rendered_element_cache.__all__