From 7ea1bf7593f72b5e23f7e4efc7890faec8a3dde5 Mon Sep 17 00:00:00 2001 From: dvora-h <67596500+dvora-h@users.noreply.github.com> Date: Wed, 2 Feb 2022 13:26:29 +0200 Subject: Fix naming conventions (#1872) * fix naming convention * fix worng changes --- redis/commands/graph/node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'redis/commands/graph/node.py') 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( -- cgit v1.2.1