fix that shit?
This commit is contained in:
parent
126b634a72
commit
3180bd607f
@ -64,7 +64,6 @@ class BaseList(Component, MarkdownComponentMap):
|
|||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
The list component.
|
The list component.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
items = props.pop("items", None)
|
items = props.pop("items", None)
|
||||||
list_style_type = props.pop("list_style_type", "none")
|
list_style_type = props.pop("list_style_type", "none")
|
||||||
@ -114,7 +113,6 @@ class UnorderedList(BaseList, Ul):
|
|||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
The list component.
|
The list component.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
items = props.pop("items", None)
|
items = props.pop("items", None)
|
||||||
list_style_type = props.pop("list_style_type", "disc")
|
list_style_type = props.pop("list_style_type", "disc")
|
||||||
@ -144,7 +142,6 @@ class OrderedList(BaseList, Ol):
|
|||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
The list component.
|
The list component.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
items = props.pop("items", None)
|
items = props.pop("items", None)
|
||||||
list_style_type = props.pop("list_style_type", "decimal")
|
list_style_type = props.pop("list_style_type", "decimal")
|
||||||
@ -168,7 +165,6 @@ class ListItem(Li, MarkdownComponentMap):
|
|||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
The list item component.
|
The list item component.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
for child in children:
|
for child in children:
|
||||||
if isinstance(child, Text):
|
if isinstance(child, Text):
|
||||||
|
Loading…
Reference in New Issue
Block a user