Skip to content

Commit

Permalink
remove silly logging
Browse files Browse the repository at this point in the history
  • Loading branch information
bullwinkle3000 committed Oct 22, 2024
1 parent 9dd1514 commit b9fca53
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include QMK_KEYBOARD_H
#include "4x6_mini_track.h"
#include "4x6_mini.h"

#define _QWERTY 0
#define _LOWER 1
Expand Down
3 changes: 0 additions & 3 deletions lib/python/qmk/cli/generate/keyboard_c.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,8 @@ def _gen_led_config(info_data):

led_layout = info_data[config_type]['layout']
for index, led_data in enumerate(led_layout):
print('index', index)
if 'matrix' in led_data:
row, col = led_data['matrix']
print('row', row, 'col', col)
matrix[row][col] = str(index)
pos.append(f'{{{led_data.get("x", 0)}, {led_data.get("y", 0)}}}')
flags.append(str(led_data.get('flags', 0)))
Expand Down Expand Up @@ -71,7 +69,6 @@ def _gen_matrix_mask(info_data):
# Mirror layout macros squashed on top of each other
for layout_name, layout_data in info_data['layouts'].items():
for key_data in layout_data['layout']:
print(key_data)
row, col = key_data['matrix']

if row >= rows or col >= cols:
Expand Down

0 comments on commit b9fca53

Please sign in to comment.