Skip to content

Commit

Permalink
Merge pull request #718 from nguyen-v/fix_inc_table_csv_mapping
Browse files Browse the repository at this point in the history
[Fix] Handle no matching output for Include Table group
  • Loading branch information
set-soft authored Nov 13, 2024
2 parents 4abd072 + 11fb946 commit 300dac9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kibot/pre_include_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def update_table(ops, parent):
index = int(group_suffix[-2])-1
group_suffix = group_suffix[:-3]
logger.debug(f' - {group_suffix} index: {index}')
out, csv = out_to_csv_mapping.get(group_suffix)
out, csv = out_to_csv_mapping.get(group_suffix, (None, None))
if not csv:
logger.warning(W_NOMATCHGRP+f'No output to handle `{group_name}` found')
continue
Expand Down

0 comments on commit 300dac9

Please sign in to comment.