Skip to content

Commit cb32bd6

Browse files
run black
1 parent 3298f4b commit cb32bd6

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.gitignore

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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/

test/async_only/test_async_only.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
"""
1111

1212
from typing import Awaitable
13+
1314
import grpc.aio
14-
from testproto.grpc import dummy_pb2_grpc, dummy_pb2
15+
from testproto.grpc import dummy_pb2, dummy_pb2_grpc
1516

1617

1718
class AsyncOnlyServicer(dummy_pb2_grpc.DummyServiceServicer):

test/sync_only/test_sync_only.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"""
1010

1111
import grpc
12-
from testproto.grpc import dummy_pb2_grpc, dummy_pb2
12+
from testproto.grpc import dummy_pb2, dummy_pb2_grpc
1313

1414

1515
class AsyncOnlyServicer(dummy_pb2_grpc.DummyServiceServicer):

0 commit comments

Comments
 (0)