diff options
Diffstat (limited to 'src/ee/tools')
-rw-r--r-- | src/ee/tools/part_validate_parts.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ee/tools/part_validate_parts.py b/src/ee/tools/part_validate_parts.py index d9ad3f7..cebe70f 100644 --- a/src/ee/tools/part_validate_parts.py +++ b/src/ee/tools/part_validate_parts.py @@ -91,9 +91,9 @@ def check_has_footprint(ctx: Context, bom: Part, sch: Part): return ms.warning("Part has footprint in schematic and a BOM part but their footprints do not match. " f"Footprints: part: {fp}, BOM: {supplier_fp}.") - if fp is None and supplier_fp is not None: - return ms.warning(f"The schematic part's footprint should be compatible with the BOM part's footprint: " - f"{supplier_fp}.") + # if fp is None and supplier_fp is not None: + # return ms.warning(f"The schematic part's footprint should be compatible with the BOM part's footprint: " + # f"{supplier_fp}.") if len(ms.messages) == 0: ms.info("Part has footprint and BOM part. Their footprints matches.") |