While the following code works: ```python class Configuration(ecological.AutoConfig): integer_list: List dictionary: Dict ``` The following doesn't: ```python class Configuration(ecological.AutoConfig): integer_list: List[int] dictionary: Dict[str, str] ```