remove unnecessay import

This commit is contained in:
Srinivas Reddy Thatiparthy 2017-08-16 23:15:25 +05:30
parent b2f841fcaa
commit 1b545d6082

View File

@ -39,10 +39,7 @@ r"""
import re
import sys
import inspect
try:
from hashlib import md5
except ImportError:
from md5 import md5
from hashlib import md5
from six import text_type
from six.moves import builtins