Skip to content

Commit ab9a156

Browse files
committed
Merge branch 'pycram-integration' of github.com:Tigul/semantic_world into pycram-integration
2 parents 85ba04b + 64baa04 commit ab9a156

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/semantic_digital_twin/datastructures/prefixed_name.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def __str__(self):
1818
return f"{self.prefix}/{self.name}"
1919

2020
def __eq__(self, other):
21-
if not isinstance(other, PrefixedName):
21+
if not isinstance(other, type(self)):
2222
return False
2323
return self.prefix == other.prefix and self.name == other.name
2424

0 commit comments

Comments
 (0)