parent
4f54712a94
commit
0cf25c3295
|
|
@ -171,7 +171,7 @@ class Generic(BaseFilter): # noqa: F821
|
||||||
if self.exclude_empty_val and (value == '' or value == '~'):
|
if self.exclude_empty_val and (value == '' or value == '~'):
|
||||||
return exclude
|
return exclude
|
||||||
# Exclude all ref == #*
|
# Exclude all ref == #*
|
||||||
if self.exclude_all_hash_ref and comp.ref[0] == '#':
|
if self.exclude_all_hash_ref and comp.ref and comp.ref[0] == '#':
|
||||||
return exclude
|
return exclude
|
||||||
# KiCad 5 PCB classification
|
# KiCad 5 PCB classification
|
||||||
if self.exclude_virtual and comp.virtual:
|
if self.exclude_virtual and comp.virtual:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue