Skip to content

Commit

Permalink
remove error message
Browse files Browse the repository at this point in the history
  • Loading branch information
purdeaandrei committed Mar 12, 2023
1 parent 8b5b809 commit e0c7a13
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/python/qmk/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -680,6 +680,8 @@ def _check_matrix(info_data):
elif 'cols' in info_data['matrix_pins'] and 'rows' in info_data['matrix_pins']:
col_count = len(info_data['matrix_pins']['cols'])
row_count = len(info_data['matrix_pins']['rows'])
elif 'cols' not in info_data['matrix_pins'] and 'rows' not in info_data['matrix_pins']:
return

if col_count != actual_col_count and col_count != (actual_col_count / 2):
# FIXME: once we can we should detect if split is enabled to do the actual_col_count/2 check.
Expand Down

0 comments on commit e0c7a13

Please sign in to comment.