File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1010 ALLOW_EDITS = False
1111 pass
1212
13- from .models .helpers import taskresult_model , groupresult_model
13+ from .models .helpers import groupresult_model , taskresult_model
1414
1515GroupResult = groupresult_model ()
1616TaskResult = taskresult_model ()
Original file line number Diff line number Diff line change 22from django .conf import settings
33from django .core .exceptions import ImproperlyConfigured
44
5- from .generic import TaskResult , GroupResult
5+ from .generic import GroupResult , TaskResult
6+
67
78def taskresult_model ():
89 """Return the TaskResult model that is active in this project."""
Original file line number Diff line number Diff line change 1+ from collections .abc import Mapping
2+
13from django .conf import settings
24from django .core .exceptions import ImproperlyConfigured
3- from collections .abc import Mapping
45
56
67def get_callback_function (settings_name , default = None ):
You can’t perform that action at this time.
0 commit comments