summaryrefslogtreecommitdiff
path: root/redis/commands/graph
diff options
context:
space:
mode:
authorDavid Gilman <dgilman@aidentified.com>2022-12-14 04:18:41 -0500
committerGitHub <noreply@github.com>2022-12-14 11:18:41 +0200
commit3fb65de645bf4dd1beb8e893bdaa2c4766bbd1fa (patch)
treed5074882a70d502c91122f252788f27f1670901e /redis/commands/graph
parent6487f9555ba2d08083a081df9b65b642427361fa (diff)
downloadredis-py-3fb65de645bf4dd1beb8e893bdaa2c4766bbd1fa.tar.gz
Combine auto-concatenated strings (#2482)
Diffstat (limited to 'redis/commands/graph')
-rw-r--r--redis/commands/graph/node.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/commands/graph/node.py b/redis/commands/graph/node.py
index c5f8429..0ebe510 100644
--- a/redis/commands/graph/node.py
+++ b/redis/commands/graph/node.py
@@ -32,7 +32,7 @@ class Node:
self.labels = label
else:
raise AssertionError(
- "label should be either None, " "string or a list of strings"
+ "label should be either None, string or a list of strings"
)
self.properties = properties or {}