```python from typing import Optional, List a: Optional[List] ``` -> ```python from __future__ import annotations a: list | None ```
->