From ca948b2a4f507de514214a62e6511261db053b0e Mon Sep 17 00:00:00 2001 From: Elijah Date: Thu, 31 Oct 2024 15:56:33 +0000 Subject: [PATCH] pyright fix --- reflex/components/radix/themes/layout/list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reflex/components/radix/themes/layout/list.py b/reflex/components/radix/themes/layout/list.py index bd82fa435..d83fd168b 100644 --- a/reflex/components/radix/themes/layout/list.py +++ b/reflex/components/radix/themes/layout/list.py @@ -44,7 +44,7 @@ class BaseList(Component): # The style of the list. Default to "none". list_style_type: Var[ Union[LiteralListStyleTypeUnordered, LiteralListStyleTypeOrdered] - ] = "none" + ] = Var.create("none") # A list of items to add to the list. items: Var[Iterable] = Var.create([])