zykrah / kicad-kle-placer

KiCAD plugin to help place switch footprints based on a KLE
MIT License
74 stars 8 forks source link

Fix None Check Using 'is' vs '==' #14

Closed ghostseven closed 5 months ago

ghostseven commented 5 months ago

This fixes the footprint check, after FindFootprintByReference, this was using == to check but this is broken in the latest 8.0.2 release of KiCad, you need to use the 'is' instead.

Without this change the plugin will always fail (on MacOS at least).

zykrah commented 5 months ago

LGTM, Thanks.