diff options
Diffstat (limited to 'django/db/models/functions/json.py')
| -rw-r--r-- | django/db/models/functions/json.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/db/models/functions/json.py b/django/db/models/functions/json.py index 3a4c9c81b3..fee7dd05f4 100644 --- a/django/db/models/functions/json.py +++ b/django/db/models/functions/json.py @@ -98,8 +98,8 @@ class JSONObject(Func): def as_postgresql(self, compiler, connection, **extra_context): # Casting keys to text is only required when using JSONB_BUILD_OBJECT - # or when using JSON_OBJECT on PostgreSQL 16+ with server-side bindings. - # This is done in all cases for consistency. + # or when using JSON_OBJECT on PostgreSQL 16+ with server-side + # bindings. This is done in all cases for consistency. copy = self.copy() copy.set_source_expressions( [ |
