We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
is
is not
1 parent 6926d1e commit 69b4fc7Copy full SHA for 69b4fc7
src/dwarf2cpp/models.py
@@ -191,7 +191,7 @@ def merge(self, other: Object) -> bool:
191
if not isinstance(other, TypeDef):
192
return False
193
194
- if self.kind != other.kind or self.name != other.name or type(self.value) != type(other.value):
+ if self.kind != other.kind or self.name != other.name or type(self.value) is not type(other.value):
195
196
197
if isinstance(self.value, str):
0 commit comments