Fix typo and use better explanation
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Luke Murphy 2020-08-10 14:59:24 +02:00
parent 60906b6981
commit 3f690fefa1
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 5 additions and 4 deletions

View File

@ -14,10 +14,11 @@ $ pip install hyper-rpc
## Known Issues
- wontfix: generated service/stub files don't have correct Python 3 import
syntax (see [grpc/grpc#9575](https://github.com/grpc/grpc/issues/9575)). One
work-around for this is to translate `import foo_pb2 as foo__pb2` -> to `from
. import foo_pb2 as foo__pb2` manually. See this [makefile target](https://github.com/hyperpy/hyperspace-rpc/blob/5f1f88106c56ac48d0d1414f63616ba2d8af5f5d/makefile#L3) for some `sed` inspiration.
- wontfix: generated service/stub files which import other `.proto` files will
not have correct Python 3 import syntax (see [grpc/grpc#9575](https://github.com/grpc/grpc/issues/9575)). One work-around
for this is to translate `import foo_pb2 as foo__pb2` to `from . import foo_pb2 as foo__pb2` manually. See this [makefile
target](https://github.com/hyperpy/hyperspace-rpc/blob/5f1f88106c56ac48d0d1414f63616ba2d8af5f5d/makefile#L3)
for some `sed` inspiration.
## Example