(self, path, parent_path, is_last)
| 13 | display_parent_prefix_last = '│ ' |
| 14 | |
| 15 | def __init__(self, path, parent_path, is_last): |
| 16 | self.path = Path(str(path)) |
| 17 | self.parent = parent_path |
| 18 | self.is_last = is_last |
| 19 | if self.parent: |
| 20 | self.depth = self.parent.depth + 1 |
| 21 | else: |
| 22 | self.depth = 0 |
| 23 | |
| 24 | @property |
| 25 | def displayname(self): |
nothing calls this directly
no outgoing calls
no test coverage detected