(self, msg, color_name="NONE")
| 112 | self.close() |
| 113 | |
| 114 | def _msg(self, msg, color_name="NONE"): |
| 115 | print(f"{self.colors.get(color_name, '')}{msg}{self.colors.get(Verify.COLOR_RESET, '')}", file=self.output) |
| 116 | |
| 117 | def run(self, fix: bool = False, lookup_record_func: Optional[Callable] = None): |
| 118 |
no test coverage detected