mirror of
https://github.com/pyscript/pyscript.git
synced 2026-02-25 14:01:32 -05:00
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
This commit is contained in:
@@ -45,7 +45,10 @@ def create_component_details(component_label, component):
|
||||
"""
|
||||
# Get the example from the examples catalog
|
||||
example = component["instance"]
|
||||
details = getattr(example, '__doc__', '') or f"Details missing for component {component_label}"
|
||||
details = (
|
||||
getattr(example, "__doc__", "")
|
||||
or f"Details missing for component {component_label}"
|
||||
)
|
||||
|
||||
return div(
|
||||
[
|
||||
|
||||
@@ -91,10 +91,15 @@ for header in [h1, h2, h3, h4, h5, h6]:
|
||||
headers_code.append(f'{header.tag}("{header.tag.upper()} header")')
|
||||
headers_code = "\n".join(headers_code)
|
||||
|
||||
rich_input = input_(type='text', name='some name',
|
||||
autofocus=True, pattern="\w{3,16}",
|
||||
placeholder='add text with > 3 chars', required=True, size='20'
|
||||
)
|
||||
rich_input = input_(
|
||||
type="text",
|
||||
name="some name",
|
||||
autofocus=True,
|
||||
pattern="\w{3,16}",
|
||||
placeholder="add text with > 3 chars",
|
||||
required=True,
|
||||
size="20",
|
||||
)
|
||||
inputs_div.append(rich_input)
|
||||
inputs_code.append("# You can create inputs with more options like")
|
||||
inputs_code.append("# this by passing properties as kwargs")
|
||||
|
||||
Reference in New Issue
Block a user