(self)
| 740 | return pathlib.Path(self.root, child) |
| 741 | |
| 742 | def children(self): |
| 743 | with suppress(Exception): |
| 744 | return os.listdir(self.root or '.') |
| 745 | with suppress(Exception): |
| 746 | return self.zip_children() |
| 747 | return [] |
| 748 | |
| 749 | def zip_children(self): |
| 750 | zip_path = zipfile.Path(self.root) |
no test coverage detected