From de65056c074b49bc8551a8c88e912c93f61048f4 Mon Sep 17 00:00:00 2001 From: thiswillbeyourgithub <26625900+thiswillbeyourgithub@users.noreply.github.com> Date: Fri, 9 May 2025 10:35:29 +0200 Subject: [PATCH] fix: indentation Signed-off-by: thiswillbeyourgithub <26625900+thiswillbeyourgithub@users.noreply.github.com> --- docs/features/plugin/functions/tab-shared/Common.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/features/plugin/functions/tab-shared/Common.md b/docs/features/plugin/functions/tab-shared/Common.md index 1919897..51b7d8a 100644 --- a/docs/features/plugin/functions/tab-shared/Common.md +++ b/docs/features/plugin/functions/tab-shared/Common.md @@ -27,7 +27,7 @@ class Filter: default=4, description="A valve controlling a numberical value" # required=False, # you can enforce fields using True - ) + ) # To give the user the choice between multiple strings, you can use Literal from typing: choice_option: Literal["choiceA", "choiceB"] = Field( default="choiceA", @@ -36,10 +36,10 @@ class Filter: priority: int = Field( default=0, description="Priority level for the filter operations. Lower values are passed through first" - ) + ) # The priority field is optional but if present will be used to # order the Filters. - pass + pass # Note that this 'pass' helps for parsing and is recommended. # UserValves are defined the same way.