summaryrefslogtreecommitdiff
path: root/redis/commands/graph/path.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/path.py
parentdecd1f6ae5434b111c5b125263549d8743275e51 (diff)
downloadredis-py-c7600b4c7e558d3c05485f76cfcdd3e807c6b13e.tar.gz
add type checking for graph __eq__ (#2531)
Diffstat (limited to 'redis/commands/graph/path.py')
-rw-r--r--redis/commands/graph/path.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/redis/commands/graph/path.py b/redis/commands/graph/path.py
index 6f2214a..ee22dc8 100644
--- a/redis/commands/graph/path.py
+++ b/redis/commands/graph/path.py
@@ -54,6 +54,10 @@ class Path:
return self
def __eq__(self, other):
+ # Type checking
+ if not isinstance(other, Path):
+ return False
+
return self.nodes() == other.nodes() and self.edges() == other.edges()
def __str__(self):