(self)
| 23 | |
| 24 | @property |
| 25 | def displayname(self): |
| 26 | if self.path.is_dir(): |
| 27 | return self.path.name + '/' |
| 28 | return self.path.name |
| 29 | |
| 30 | @classmethod |
| 31 | def make_tree(cls, root, parent=None, is_last=False, criteria=None): |
nothing calls this directly
no outgoing calls
no test coverage detected