From 0d85b5575ee79afd6db8a492d63ef2816c78056d Mon Sep 17 00:00:00 2001 From: Warren Jin Date: Thu, 29 Jan 2015 14:11:03 -0500 Subject: [PATCH] flake whitespace --- rest_framework/fields.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rest_framework/fields.py b/rest_framework/fields.py index c9110aa37..c32f4a754 100644 --- a/rest_framework/fields.py +++ b/rest_framework/fields.py @@ -1296,14 +1296,14 @@ class RecursiveField(Field): # This list of attributes determined by the attributes that # `rest_framework.serializers` calls to on a field object PROXIED_ATTRS = ( - # bound fields + # bound fields 'get_value', 'get_initial', 'run_validation', 'get_attribute', 'to_representation', - - # attributes + + # attributes 'field_name', 'source', 'read_only', @@ -1348,7 +1348,7 @@ class RecursiveField(Field): return getattr(proxied, name) except AttributeError: pass - + return object.__getattribute__(self, name)