diff options
Diffstat (limited to 'redis/commands/graph/node.py')
-rw-r--r-- | redis/commands/graph/node.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/commands/graph/node.py b/redis/commands/graph/node.py index 47e4eeb..c5f8429 100644 --- a/redis/commands/graph/node.py +++ b/redis/commands/graph/node.py @@ -37,7 +37,7 @@ class Node: self.properties = properties or {} - def toString(self): + def to_string(self): res = "" if self.properties: props = ",".join( |