pyright fix

This commit is contained in:
Elijah 2024-10-31 15:56:33 +00:00
parent 56cf2acc74
commit ca948b2a4f

View File

@ -44,7 +44,7 @@ class BaseList(Component):
# The style of the list. Default to "none". # The style of the list. Default to "none".
list_style_type: Var[ list_style_type: Var[
Union[LiteralListStyleTypeUnordered, LiteralListStyleTypeOrdered] Union[LiteralListStyleTypeUnordered, LiteralListStyleTypeOrdered]
] = "none" ] = Var.create("none")
# A list of items to add to the list. # A list of items to add to the list.
items: Var[Iterable] = Var.create([]) items: Var[Iterable] = Var.create([])