blob: 773922fe8c7327792ebb25379920dfd961c3a9eb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- contrib/python/mypy-protobuf/mypy_protobuf/main.py (index)
+++ contrib/python/mypy-protobuf/mypy_protobuf/main.py (working tree)
@@ -938,8 +938,6 @@ def generate_mypy_stubs(
output = response.file.add()
output.name = fd.name[:-6].replace("-", "_").replace(".", "/") + "_pb2.pyi"
output.content = pkg_writer.write()
- if not quiet:
- print("Writing mypy to", output.name, file=sys.stderr)
def generate_mypy_grpc_stubs(
@@ -964,8 +962,6 @@ def generate_mypy_grpc_stubs(
output = response.file.add()
output.name = fd.name[:-6].replace("-", "_").replace(".", "/") + "_pb2_grpc.pyi"
output.content = pkg_writer.write()
- if not quiet:
- print("Writing mypy to", output.name, file=sys.stderr)
@contextmanager
|