From ffba8566fdbaed61159c8a5523e0b0b9dfde0c8b Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Tue, 22 Aug 2023 09:00:21 -0300 Subject: [PATCH] [DOC][Filter][Spec to Field][Fixed] Important mark for spec/s The `*` was in the wrong position --- kibot/fil_spec_to_field.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kibot/fil_spec_to_field.py b/kibot/fil_spec_to_field.py index b7749ec6..d2be3044 100644 --- a/kibot/fil_spec_to_field.py +++ b/kibot/fil_spec_to_field.py @@ -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