diff options
author | Noah Misch | 2020-05-21 15:31:16 +0000 |
---|---|---|
committer | Noah Misch | 2020-05-21 15:31:16 +0000 |
commit | 3350fb5d1f9d73de15428e9bfa83dce96421fc14 (patch) | |
tree | 1308a05515eb979bcd153ef12252d5459c545026 /src/pl/plpython/plpy_resultobject.c | |
parent | e4db972ed5f12c09403ff0be24e12e5d4032aaaa (diff) |
Clear some style deviations.
Diffstat (limited to 'src/pl/plpython/plpy_resultobject.c')
-rw-r--r-- | src/pl/plpython/plpy_resultobject.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/pl/plpython/plpy_resultobject.c b/src/pl/plpython/plpy_resultobject.c index b31dbdaa1d4..54f39419c84 100644 --- a/src/pl/plpython/plpy_resultobject.c +++ b/src/pl/plpython/plpy_resultobject.c @@ -22,9 +22,7 @@ static PyObject *PLy_result_str(PyObject *arg); static PyObject *PLy_result_subscript(PyObject *arg, PyObject *item); static int PLy_result_ass_subscript(PyObject *self, PyObject *item, PyObject *value); -static char PLy_result_doc[] = { - "Results of a PostgreSQL query" -}; +static char PLy_result_doc[] = "Results of a PostgreSQL query"; static PySequenceMethods PLy_result_as_sequence = { .sq_length = PLy_result_length, |