Satisfy clippy

This commit is contained in:
Joscha 2025-04-16 22:26:02 +02:00
parent b174b796ed
commit 14ef0bb122

View file

@ -219,7 +219,8 @@ pub async fn get() -> Document {
div("(hh:mm)"), div("(hh:mm)"),
div("(hh:mm)"), div("(hh:mm)"),
div(()), div(()),
iter::repeat(( iter::repeat_n(
(
div(input(( div(input((
attr::class("i-task"), attr::class("i-task"),
attr::name("task"), attr::name("task"),
@ -260,8 +261,9 @@ pub async fn get() -> Document {
option((attr::value("F"), "Feiertag")), option((attr::value("F"), "Feiertag")),
option((attr::value("S"), "Sonstiges")), option((attr::value("S"), "Sonstiges")),
))), ))),
)) ),
.take(22) 22,
)
.collect::<Vec<_>>(), .collect::<Vec<_>>(),
)), )),
button(( button((