Skip to content

Commit 48ff15f

Browse files
authored
resolving type error in execution_plan_to_string (#72)
1 parent d790e35 commit 48ff15f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redisgraph/graph.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def query(self, q, params=None):
131131
return QueryResult(self, response)
132132

133133
def _execution_plan_to_string(self, plan):
134-
return "\n".join(plan)
134+
return b"\n".join(plan)
135135

136136
def execution_plan(self, query):
137137
"""

0 commit comments

Comments
 (0)