From db143cfddf375568a6178d0b876d393af5bef685 Mon Sep 17 00:00:00 2001 From: Elijah Date: Wed, 23 Oct 2024 13:41:01 +0000 Subject: [PATCH] precommit fix --- reflex/components/radix/themes/layout/list.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reflex/components/radix/themes/layout/list.py b/reflex/components/radix/themes/layout/list.py index 94922486e..9dc8ac9a6 100644 --- a/reflex/components/radix/themes/layout/list.py +++ b/reflex/components/radix/themes/layout/list.py @@ -42,9 +42,9 @@ class BaseList(Component): tag = "ul" # The style of the list. Default to "none". - list_style_type: Optional[Union[ - LiteralListStyleTypeUnordered, LiteralListStyleTypeOrdered - ]] = "none" + list_style_type: Optional[ + Union[LiteralListStyleTypeUnordered, LiteralListStyleTypeOrdered] + ] = "none" # A list of items to add to the list. items: Optional[Union[Iterable, Var[Iterable]]] = None