[DOC][Filter][Spec to Field][Fixed] Important mark for spec/s

The `*` was in the wrong position
This commit is contained in:
Salvador E. Tropea 2023-08-22 09:00:21 -03:00
parent 17df07c243
commit ffba8566fd
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ class SpecOptions(Optionable):
self._unknown_is_error = True
with document:
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',
'_power', '_current', '_voltage', '_frequency', '_temp_coeff', '_manf' and '_size' """
self.field = ''
@ -73,7 +73,7 @@ class Spec_to_Field(BaseFilter): # noqa: F821
""" *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 """
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
""" Check that the data we got from different distributors is equivalent """
self.check_dist_fields = Optionable