Skip to content

Commit

Permalink
Fixed KiBoM mounting hole regex
Browse files Browse the repository at this point in the history
  • Loading branch information
set-soft committed Apr 21, 2022
1 parent eca4f51 commit ac39118
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kibot/fil_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
logger = log.get_logger()
DEFAULT_EXCLUDE = [{'column': ColumnList.COL_REFERENCE, 'regex': '^TP[0-9]*'},
{'column': ColumnList.COL_REFERENCE, 'regex': '^FID'},
{'column': ColumnList.COL_PART, 'regex': 'mount.*hole'},
{'column': ColumnList.COL_PART, 'regex': '^mount.*hole'},
{'column': ColumnList.COL_PART, 'regex': 'solder.*bridge'},
{'column': ColumnList.COL_PART, 'regex': 'solder.*jump'},
{'column': ColumnList.COL_PART, 'regex': 'test.*point'},
Expand Down

0 comments on commit ac39118

Please sign in to comment.