File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,12 @@ __pycache__/
88* .pyc
99/test /generated /** /* .py
1010! /test /generated /** /__init__.py
11- /test /generated-concrete /** /* .py
12- ! /test /generated-concrete /** /__init__.py
11+ /test /generated_concrete /** /* .py
12+ ! /test /generated_concrete /** /__init__.py
13+ /test /generated_async_only /** /* .py
14+ ! /test /generated_async_only /** /__init__.py
15+ /test /generated_sync_only /** /* .py
16+ ! /test /generated_sync_only /** /__init__.py
1317.pytest_cache
1418/build /
1519/dist /
Original file line number Diff line number Diff line change 1010"""
1111
1212from typing import Awaitable
13+
1314import grpc .aio
14- from testproto .grpc import dummy_pb2_grpc , dummy_pb2
15+ from testproto .grpc import dummy_pb2 , dummy_pb2_grpc
1516
1617
1718class AsyncOnlyServicer (dummy_pb2_grpc .DummyServiceServicer ):
Original file line number Diff line number Diff line change 99"""
1010
1111import grpc
12- from testproto .grpc import dummy_pb2_grpc , dummy_pb2
12+ from testproto .grpc import dummy_pb2 , dummy_pb2_grpc
1313
1414
1515class AsyncOnlyServicer (dummy_pb2_grpc .DummyServiceServicer ):
You can’t perform that action at this time.
0 commit comments