From b44922fe7cc31c76bc2dfd95a9b052271bab4189 Mon Sep 17 00:00:00 2001 From: nadijagraca Date: Wed, 25 Oct 2023 16:55:07 +0200 Subject: [PATCH] minor change to types --- vizro-core/src/vizro/models/types.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vizro-core/src/vizro/models/types.py b/vizro-core/src/vizro/models/types.py index d5cbbdfbc..21b30d04f 100644 --- a/vizro-core/src/vizro/models/types.py +++ b/vizro-core/src/vizro/models/types.py @@ -315,4 +315,7 @@ class OptionsDictType(TypedDict): ] """Permissible value types for page attribute. Values are displayed as default.""" -NavSelectorType = Annotated[Union["Accordion", "NavBar"], Field(discriminator="type", description="...")] +NavSelectorType = Annotated[ + Union["Accordion", "NavBar"], + Field(discriminator="type", description="Component that makes up part of the navigation panel"), +]