(self)
| 321 | |
| 322 | @property |
| 323 | def success(self): |
| 324 | return (self.error_before_exec is None) and (self.error_in_exec is None) |
| 325 | |
| 326 | def raise_error(self): |
| 327 | """Reraises error if `success` is `False`, otherwise does nothing""" |
nothing calls this directly
no outgoing calls
no test coverage detected