(self, codebase, csv, **kwargs)
| 65 | return csv |
| 66 | |
| 67 | def process_codebase(self, codebase, csv, **kwargs): |
| 68 | warnings.warn( |
| 69 | DEPRECATED_MSG, |
| 70 | DeprecationWarning, |
| 71 | stacklevel=1 |
| 72 | ) |
| 73 | import click |
| 74 | click.secho('[DEPRECATION WARNING] ' + DEPRECATED_MSG, err=True) |
| 75 | |
| 76 | results = self.get_files(codebase, **kwargs) |
| 77 | write_csv(results, csv) |
| 78 | |
| 79 | |
| 80 | def write_csv(results, output_file): |
nothing calls this directly
no test coverage detected