We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d5445a commit 9b76031Copy full SHA for 9b76031
redisgraph/client.py
@@ -143,9 +143,8 @@ def query(self, q):
143
result_set = None
144
response = self.redis_con.execute_command("GRAPH.QUERY", self.name, q)
145
146
- data = response[0]
+ result_set = response[0]
147
statistics = response[1]
148
- result_set = [res.decode().split(',') for res in data]
149
150
return QueryResult(result_set, statistics)
151
setup.py
@@ -1,7 +1,7 @@
1
from setuptools import setup, find_packages
2
setup(
3
name='redisgraph',
4
- version='1.3',
+ version='1.4',
5
6
description='RedisGraph Python Client',
7
url='https://github.com/swilly22/redisgraph-py',
0 commit comments