From 6a1d6d313c96cb3965a6af6ba4ef3e1c2a197fbc Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Thu, 4 May 2023 11:04:52 -0300 Subject: [PATCH] [DOCs] Added link to the value_split example --- README.md | 1 + kibot/fil_value_split.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 095f97f8..d3bfacfa 100644 --- a/README.md +++ b/README.md @@ -1047,6 +1047,7 @@ filters: - value_split: Value_Split This filter extracts information from the value and fills other fields. I.e. extracts the tolerance and puts it in the `tolerance` field. + Usage [example](https://inti-cmnb.github.io/kibot-examples-1/value_split/). * Valid keys: - `autoplace`: [boolean=true] Try to figure out the position for the added fields. - `autoplace_mechanism`: [string='bottom'] [bottom,top] Put the new field at the bottom/top of the last field. diff --git a/kibot/fil_value_split.py b/kibot/fil_value_split.py index ca32d4e8..0041e296 100644 --- a/kibot/fil_value_split.py +++ b/kibot/fil_value_split.py @@ -17,7 +17,8 @@ logger = log.get_logger() class Value_Split(BaseFilter): # noqa: F821 """ Value_Split This filter extracts information from the value and fills other fields. - I.e. extracts the tolerance and puts it in the `tolerance` field """ + I.e. extracts the tolerance and puts it in the `tolerance` field. + Usage [example](https://inti-cmnb.github.io/kibot-examples-1/value_split/) """ def __init__(self): super().__init__() self._is_transform = True