Open
Description
We generated the following code:
# ...
from typing import AsyncIterable, AsyncIterator, Iterable, Optional, Union
# ...
async def contact_phone(
self, *, contact_id: str = "", phone_list: Optional[List[str]] = None
) -> "puppet.ContactPhoneResponse":
# ...
As we can see: there's a List
in the code, but there's no List
imported from typing
.