From 213cd3c0a75c57b010ceaaa85b3816923c862b3d Mon Sep 17 00:00:00 2001 From: Bence Szabo <49201271+bence42@users.noreply.github.com> Date: Wed, 7 Sep 2022 22:50:07 +0200 Subject: [PATCH] fix file count print --- genie.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/genie.py b/genie.py index 9b8aa63..c0029af 100644 --- a/genie.py +++ b/genie.py @@ -302,7 +302,7 @@ def get_linecount(input_file): with open(input_file_path, 'r') as input_file: logging.info( - f'[{file_idx+1:>3}/{len(args.input_files):<3}]{input_file.name}') + f'[{file_idx+1:>3}/{len(args.input_files):<3}] {input_file.name}') line_count = get_linecount(input_file) mutations_and_records: list[tuple[Mutation,