Skip to content

Commit

Permalink
fix file count print
Browse files Browse the repository at this point in the history
  • Loading branch information
bence42 committed Sep 7, 2022
1 parent 4a8ed37 commit 213cd3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion genie.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 213cd3c

Please sign in to comment.