(self, msg, output_path)
| 1156 | return inp |
| 1157 | |
| 1158 | def WriteFailureAndRaise(self, msg, output_path): |
| 1159 | if output_path: |
| 1160 | self.WriteJSON({'error': msg}, output_path, force_verbose=True) |
| 1161 | raise MBErr(msg) |
| 1162 | |
| 1163 | def WriteJSON(self, obj, path, force_verbose=False): |
| 1164 | try: |
no test coverage detected