(self, exc_type, exc_value, traceback)
| 170 | np.random.seed(self.seed) |
| 171 | |
| 172 | def __exit__(self, exc_type, exc_value, traceback): |
| 173 | # Restore the random state |
| 174 | random.setstate(self.stored_state) |
| 175 | np.random.set_state(self.stored_np_state) |
nothing calls this directly
no outgoing calls
no test coverage detected