(self, exc, value, tb)
| 53 | return super(TemporaryWorkingDirectory, self).__enter__() |
| 54 | |
| 55 | def __exit__(self, exc, value, tb): |
| 56 | _os.chdir(self.old_wd) |
| 57 | return super(TemporaryWorkingDirectory, self).__exit__(exc, value, tb) |
nothing calls this directly
no outgoing calls
no test coverage detected