Skip to content

Commit

Permalink
Use workaround for type checking the MRO of AoT
Browse files Browse the repository at this point in the history
PR frostming#41 added a workaround for the MRO type checking problem, however it
missed AoT, which is fixed by this change.
  • Loading branch information
abravalheri committed Nov 2, 2021
1 parent 9e56965 commit e4b8fae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atoml/items.py
Original file line number Diff line number Diff line change
Expand Up @@ -1399,7 +1399,7 @@ def _getstate(self, protocol=3):
return self._t, str(self), self._original, self._trivia


class AoT(Item, MutableSequence, list):
class AoT(Item, _CustomList):
"""
An array of table literal
"""
Expand Down

0 comments on commit e4b8fae

Please sign in to comment.