Add keyword arguments. Sort arguments and models. Move literals to their own module. Prepend handler_ to signal handlers. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
10 lines
236 B
Python
10 lines
236 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.utils.module_loading import import_string
|
|
|
|
from .settings import setting_graphics_backend
|
|
|
|
backend = converter_class = import_string(
|
|
dotted_path=setting_graphics_backend.value
|
|
)
|