precommit fix

This commit is contained in:
Elijah 2024-10-23 13:41:01 +00:00
parent 291bfdeacb
commit db143cfddf

View File

@ -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