diff options
author | dvora-h <67596500+dvora-h@users.noreply.github.com> | 2022-02-02 13:26:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-02 13:26:29 +0200 |
commit | 7ea1bf7593f72b5e23f7e4efc7890faec8a3dde5 (patch) | |
tree | 6087856103619f5260bebc9142e385c5759cba67 /redis/commands/graph/query_result.py | |
parent | 7f7f4f6c85c2d05e1810b512890ec42f64ffa0b3 (diff) | |
download | redis-py-7ea1bf7593f72b5e23f7e4efc7890faec8a3dde5.tar.gz |
Fix naming conventions (#1872)
* fix naming convention
* fix worng changes
Diffstat (limited to 'redis/commands/graph/query_result.py')
-rw-r--r-- | redis/commands/graph/query_result.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/redis/commands/graph/query_result.py b/redis/commands/graph/query_result.py index e9d9f4d..644ac5a 100644 --- a/redis/commands/graph/query_result.py +++ b/redis/commands/graph/query_result.py @@ -292,9 +292,9 @@ class QueryResult: # record = [] # for idx, cell in enumerate(row): # if type(cell) is Node: - # record.append(cell.toString()) + # record.append(cell.to_string()) # elif type(cell) is Edge: - # record.append(cell.toString()) + # record.append(cell.to_string()) # else: # record.append(cell) # tbl.add_row(record) |