Eliminate wildcard-import suppression

This commit is contained in:
Mehrdad Afshari 2018-04-18 23:40:52 -07:00 committed by Mehrdad Afshari
parent 86d04c2e34
commit fc3bb7c1f9
2 changed files with 1 additions and 2 deletions

View File

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

View File

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