Move ElementSupply to own file and document it

This commit is contained in:
Joscha 2019-05-11 22:50:12 +00:00
parent 7c89ada5f0
commit b71e3e15d6
4 changed files with 156 additions and 97 deletions

View file

@ -1,6 +1,7 @@
from typing import List
from .element import *
from .element_supply import *
from .exceptions import *
from .markup import *
from .tree_display import *
@ -8,6 +9,7 @@ from .tree_list import *
__all__: List[str] = []
__all__ += element.__all__
__all__ += element_supply.__all__
__all__ += exceptions.__all__
__all__ += markup.__all__
__all__ += tree_display.__all__