Commit c2611e8 1 parent d30106f commit c2611e8 Copy full SHA for c2611e8
File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1335,7 +1335,7 @@ def __eq__(self, other):
1335
1335
result = self ._eq_impl (other )
1336
1336
if result is not NotImplemented :
1337
1337
return result
1338
- return super ().__eq__ (other )
1338
+ return super (Trie , self ).__eq__ (other )
1339
1339
1340
1340
def _eq_impl (self , other ):
1341
1341
return self ._root .equals (other ._root ) # pylint: disable=protected-access
@@ -1654,7 +1654,7 @@ def _eq_impl(self, other):
1654
1654
# different trie structure.
1655
1655
if self ._separator != other ._separator : # pylint: disable=protected-access
1656
1656
return NotImplemented
1657
- return super ()._eq_impl (other )
1657
+ return super (StringTrie , self )._eq_impl (other )
1658
1658
1659
1659
def _path_from_key (self , key ):
1660
1660
return key .split (self ._separator )
You can’t perform that action at this time.
0 commit comments