We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fd7728 commit 76b1cbdCopy full SHA for 76b1cbd
website/style.py
@@ -31,7 +31,6 @@ def example_link(title: str, description: str) -> None:
31
name = title.lower().replace(' ', '_')
32
directory = Path(__file__).parent.parent / 'examples' / name
33
content = [p for p in directory.glob('*') if p.name != '__pycache__' and not p.name.startswith('.')]
34
- print(name, content, flush=True)
35
filename = 'main.py' if len(content) == 1 else ''
36
with ui.link(target=f'https://github.com/zauberzeug/nicegui/tree/main/examples/{name}/{filename}') \
37
.classes('bg-[#5898d420] p-4 self-stretch rounded flex flex-col gap-2') \
0 commit comments