mirror of
https://github.com/Tivix/django-rest-auth.git
synced 2024-11-11 03:36:35 +03:00
6ace9de268
+ removed some legacy code + added force_text for py3 support
12 lines
361 B
Python
12 lines
361 B
Python
from six import string_types
|
|
from importlib import import_module
|
|
|
|
|
|
def import_callable(path_or_callable):
|
|
if hasattr(path_or_callable, '__call__'):
|
|
return path_or_callable
|
|
else:
|
|
assert isinstance(path_or_callable, string_types)
|
|
package, attr = path_or_callable.rsplit('.', 1)
|
|
return getattr(import_module(package), attr)
|