summaryrefslogtreecommitdiff
path: root/redis/commands/graph/node.py
diff options
context:
space:
mode:
authordvora-h <67596500+dvora-h@users.noreply.github.com>2023-01-08 10:42:19 +0200
committerGitHub <noreply@github.com>2023-01-08 10:42:19 +0200
commitc7600b4c7e558d3c05485f76cfcdd3e807c6b13e (patch)
tree7376b115b09cb37073a35e30cc587fd4cf63f968 /redis/commands/graph/node.py
parentdecd1f6ae5434b111c5b125263549d8743275e51 (diff)
downloadredis-py-c7600b4c7e558d3c05485f76cfcdd3e807c6b13e.tar.gz
add type checking for graph __eq__ (#2531)
Diffstat (limited to 'redis/commands/graph/node.py')
-rw-r--r--redis/commands/graph/node.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/redis/commands/graph/node.py b/redis/commands/graph/node.py
index 0ebe510..4546a39 100644
--- a/redis/commands/graph/node.py
+++ b/redis/commands/graph/node.py
@@ -65,6 +65,10 @@ class Node:
return res
def __eq__(self, rhs):
+ # Type checking
+ if not isinstance(rhs, Node):
+ return False
+
# Quick positive check, if both IDs are set.
if self.id is not None and rhs.id is not None and self.id != rhs.id:
return False