Fixed lint

This commit is contained in:
Syrus Akbary 2017-02-20 21:59:38 -08:00
parent b5cc0a81da
commit 1a52cf9a3d

View File

@ -9,14 +9,14 @@ def import_string(dotted_path):
"""
try:
module_path, class_name = dotted_path.rsplit('.', 1)
except ValueError as err:
except ValueError:
raise ImportError("%s doesn't look like a module path" % dotted_path)
module = import_module(module_path)
try:
return getattr(module, class_name)
except AttributeError as err:
except AttributeError:
raise ImportError('Module "%s" does not define a "%s" attribute/class' % (
module_path, class_name)
)