Eliminate wildcard-import suppression

pull/15113/head
Mehrdad Afshari 7 years ago committed by Mehrdad Afshari
parent 86d04c2e34
commit fc3bb7c1f9
  1. 1
      .pylintrc-tests
  2. 2
      src/python/grpcio_tests/tests/unit/_from_grpc_import_star.py

@ -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,

@ -14,7 +14,7 @@
_BEFORE_IMPORT = tuple(globals())
from grpc import *
from grpc import * # pylint: disable=wildcard-import
_AFTER_IMPORT = tuple(globals())

Loading…
Cancel
Save