Fix F401 and remove exclusion

Change-Id: Id2dbff06925ed8326e4a214aabc19d4ada5db69c
This commit is contained in:
Monty Taylor
2019-12-09 13:23:15 -05:00
parent 92d7d7caeb
commit 86670bcec9
7 changed files with 15 additions and 17 deletions

View File

@@ -26,7 +26,7 @@ __metaclass__ = type
# One unittest needs to import builtins via __import__() so we need to have
# the string that represents it
try:
import __builtin__
import __builtin__ # noqa
except ImportError:
BUILTINS = 'builtins'
else: