Usual isinstance for mypy
This commit is contained in:
parent
3b1e90b30e
commit
dcde484a63
@ -125,10 +125,10 @@ class Node:
|
||||
for i in range(level):
|
||||
r += ' '
|
||||
r += self.name
|
||||
if self.name in b_operators:
|
||||
if self.name in b_operators and isinstance(self, Binary):
|
||||
r += self.left.printtree(level + 1)
|
||||
r += self.right.printtree(level + 1)
|
||||
elif self.name in u_operators:
|
||||
elif self.name in u_operators and isinstance(self, Unary):
|
||||
r += '\t%s\n' % self.prop
|
||||
r += self.child.printtree(level + 1)
|
||||
return '\n' + r
|
||||
|
Loading…
Reference in New Issue
Block a user