Add __repr__ for WrappedNode

Signed-off-by: Ahmed Charles <acharles@outlook.com>
This commit is contained in:
Ahmed Charles
2022-07-19 22:32:56 -07:00
committed by Gerwin Klein
parent a6c2b5f404
commit c92b3b3163

View File

@@ -168,6 +168,9 @@ class WrappedNode:
def __hash__(self):
return hash(self.path)
def __repr__(self):
return 'WrappedNode(path={})'.format(self.path)
class Utils:
@staticmethod