From fc3bb7c1f920a5d52fa6b610ef5068d42dbafdb2 Mon Sep 17 00:00:00 2001 From: Mehrdad Afshari Date: Wed, 18 Apr 2018 23:40:52 -0700 Subject: [PATCH] Eliminate wildcard-import suppression --- .pylintrc-tests | 1 - src/python/grpcio_tests/tests/unit/_from_grpc_import_star.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.pylintrc-tests b/.pylintrc-tests index 82c48a1b957..5279ecf15eb 100644 --- a/.pylintrc-tests +++ b/.pylintrc-tests @@ -49,7 +49,6 @@ disable= too-many-format-args, too-many-return-statements, too-many-statements, - wildcard-import, line-too-long, wrong-import-position, wrong-import-order, diff --git a/src/python/grpcio_tests/tests/unit/_from_grpc_import_star.py b/src/python/grpcio_tests/tests/unit/_from_grpc_import_star.py index e6831317228..ad847ae03eb 100644 --- a/src/python/grpcio_tests/tests/unit/_from_grpc_import_star.py +++ b/src/python/grpcio_tests/tests/unit/_from_grpc_import_star.py @@ -14,7 +14,7 @@ _BEFORE_IMPORT = tuple(globals()) -from grpc import * +from grpc import * # pylint: disable=wildcard-import _AFTER_IMPORT = tuple(globals())