(self, td)
| 141 | |
| 142 | class TempdirContext: |
| 143 | def __init__(self, td): |
| 144 | self.td = pathlib.Path(td) |
| 145 | |
| 146 | self.tools_path = str(self.td / "tools") |
| 147 | |
| 148 | @property |
| 149 | def is_isolated(self): |
nothing calls this directly
no outgoing calls
no test coverage detected