mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Removed unneeded variable in contrib/postgres/fields/jsonb.py.
This commit is contained in:
committed by
Tim Graham
parent
7e299c0e03
commit
1f10c3994c
@@ -71,8 +71,7 @@ class JSONField(Field):
|
||||
)
|
||||
|
||||
def value_to_string(self, obj):
|
||||
value = self.value_from_object(obj)
|
||||
return value
|
||||
return self.value_from_object(obj)
|
||||
|
||||
def formfield(self, **kwargs):
|
||||
defaults = {'form_class': forms.JSONField}
|
||||
|
||||
Reference in New Issue
Block a user