From 081f9562630e515c23d47b593c186652300240d3 Mon Sep 17 00:00:00 2001 From: Masood Malekghassemi Date: Thu, 19 Feb 2015 17:12:57 -0800 Subject: [PATCH] Removed unused/wrong generated Python code imports from Python codegen. --- src/compiler/python_generator.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/compiler/python_generator.cc b/src/compiler/python_generator.cc index 48d90624d62..cdd3d8a98a5 100644 --- a/src/compiler/python_generator.cc +++ b/src/compiler/python_generator.cc @@ -313,8 +313,6 @@ string GetServices(const FileDescriptor* file) { string output; StringOutputStream output_stream(&output); Printer out(&output_stream, '$'); - out.Print("import abc\n"); - out.Print("import google3\n"); out.Print("from grpc.framework.face import demonstration as _face_testing\n"); out.Print("from grpc.framework.face import interfaces as _face_interfaces\n");