(self, **kwargs)
| 17 | self._file.flush() |
| 18 | |
| 19 | def log(self, **kwargs): |
| 20 | self._csv.writerow( |
| 21 | [ |
| 22 | parse_format % kwargs[attr_name] |
| 23 | for attr_name, parse_format in self._attr_format_dict.items() |
| 24 | ] |
| 25 | ) |
| 26 | self._file.flush() |
| 27 | |
| 28 | def close(self): |
| 29 | self._file.close() |
no test coverage detected