diff --git a/src/monopoly/cli.py b/src/monopoly/cli.py index b0815aaf..3bb74b8e 100644 --- a/src/monopoly/cli.py +++ b/src/monopoly/cli.py @@ -78,6 +78,9 @@ def display_report(self, verbose=False) -> None: Parses all results, displaying the number of successfully processed statements and any errors. """ + for res in self.processed_results: + click.echo(f"{res.source_file_name} -> {res.target_file_name}") + if self.number_errored > 0: error_msg = ( f"{self.number_errored} statement(s) had errors while processing" @@ -98,9 +101,6 @@ def display_report(self, verbose=False) -> None: ) ) - for res in self.processed_results: - click.echo(f"{res.source_file_name} -> {res.target_file_name}") - def process_statement( file: Path,