We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
List
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
betterproto version: v2.0.0b2
Reproduce steps:
git clone [email protected]:wechaty/grpc.git cd grpc/python make install make generate cat src/wechaty_grpc/wechaty/__init__.py
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.
typing
Link to: wechaty/grpc#120
The text was updated successfully, but these errors were encountered:
This is a known issue and should be fixed by #183
Sorry, something went wrong.
Got it, thank your very much!
Close this issue because it's a duplicated one.
No branches or pull requests
betterproto version: v2.0.0b2
Reproduce steps:
We generated the following code:
As we can see: there's a
List
in the code, but there's noList
imported fromtyping
.Link to: wechaty/grpc#120
The text was updated successfully, but these errors were encountered: