Repair typo

This commit is contained in:
Tony Garnock-Jones 2021-08-18 22:56:59 -04:00
parent e0bc1b31b8
commit 0f30522f19
1 changed files with 1 additions and 1 deletions

View File

@ -223,7 +223,7 @@ class Definition(SchemaObject):
return not self.__eq__(other)
def __hash__(self):
return hash(self._fields) ^ hash(self.__class_)
return hash(self._fields) ^ hash(self.__class__)
def _accept(self, visitor):
if self.VARIANT is None: