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 c46f9b0 commit ecaa9fbCopy full SHA for ecaa9fb
redisgraph/graph.py
@@ -90,7 +90,7 @@ def commit(self):
90
query += ','.join([str(edge) for edge in self.edges])
91
92
# Discard leading comma.
93
- if query[-1] is ',':
+ if query[-1] == ',':
94
query = query[:-1]
95
96
return self.query(query)
0 commit comments