blob: 6f718593f33765ce940afb0a8792de423b55f832 (
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)
@@ -989,8 +989,6 @@ def generate_mypy_stubs(
output = response.file.add()
output.name = fd.name[:-6].replace("-", "_").replace(".", "/") + "_pb2.pyi"
output.content = HEADER + pkg_writer.write()
- if not quiet:
- print("Writing mypy to", output.name, file=sys.stderr)
def generate_mypy_grpc_stubs(
@@ -1017,8 +1015,6 @@ def generate_mypy_grpc_stubs(
output = response.file.add()
output.name = fd.name[:-6].replace("-", "_").replace(".", "/") + "_pb2_grpc.pyi"
output.content = HEADER + pkg_writer.write()
- if not quiet:
- print("Writing mypy to", output.name, file=sys.stderr)
@contextmanager
|