[DOC][Filter][Spec to Field][Fixed] Important mark for spec/s
The `*` was in the wrong position
This commit is contained in:
parent
17df07c243
commit
ffba8566fd
|
|
@ -29,7 +29,7 @@ class SpecOptions(Optionable):
|
||||||
self._unknown_is_error = True
|
self._unknown_is_error = True
|
||||||
with document:
|
with document:
|
||||||
self.spec = Optionable
|
self.spec = Optionable
|
||||||
""" [string|list(string)=''] *Name/s of the source spec/s.
|
""" *[string|list(string)=''] Name/s of the source spec/s.
|
||||||
The following names are uniform across distributors: '_desc', '_value', '_tolerance', '_footprint',
|
The following names are uniform across distributors: '_desc', '_value', '_tolerance', '_footprint',
|
||||||
'_power', '_current', '_voltage', '_frequency', '_temp_coeff', '_manf' and '_size' """
|
'_power', '_current', '_voltage', '_frequency', '_temp_coeff', '_manf' and '_size' """
|
||||||
self.field = ''
|
self.field = ''
|
||||||
|
|
@ -73,7 +73,7 @@ class Spec_to_Field(BaseFilter): # noqa: F821
|
||||||
""" *Name of the output used to collect the specs.
|
""" *Name of the output used to collect the specs.
|
||||||
Currently this must be a `bom` output with KiCost enabled and a distributor that returns specs """
|
Currently this must be a `bom` output with KiCost enabled and a distributor that returns specs """
|
||||||
self.specs = SpecOptions
|
self.specs = SpecOptions
|
||||||
""" [list(dict)|dict] *One or more specs to be copied """
|
""" *[list(dict)|dict] One or more specs to be copied """
|
||||||
self.check_dist_coherence = True
|
self.check_dist_coherence = True
|
||||||
""" Check that the data we got from different distributors is equivalent """
|
""" Check that the data we got from different distributors is equivalent """
|
||||||
self.check_dist_fields = Optionable
|
self.check_dist_fields = Optionable
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue