aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/mixins.py
diff options
context:
space:
mode:
authorTom Christie2013-01-15 17:50:51 +0000
committerTom Christie2013-01-15 17:50:51 +0000
commit52847a215d4e8de88e81d9ae79ce8bee9a36a9a2 (patch)
treec0246d515129944bed13f249087cf914586124c1 /rest_framework/mixins.py
parent8f3931e02d0f0ba803075ca65dc8617ee959456f (diff)
downloaddjango-rest-framework-52847a215d4e8de88e81d9ae79ce8bee9a36a9a2.tar.bz2
Fix implementation
Diffstat (limited to 'rest_framework/mixins.py')
-rw-r--r--rest_framework/mixins.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/rest_framework/mixins.py b/rest_framework/mixins.py
index 8873e4ae..9bd566da 100644
--- a/rest_framework/mixins.py
+++ b/rest_framework/mixins.py
@@ -25,9 +25,6 @@ class CreateModelMixin(object):
return Response(serializer.data, status=status.HTTP_201_CREATED)
return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST)
- def pre_save(self, obj):
- pass
-
class ListModelMixin(object):
"""