updated dependencies and go

This commit is contained in:
2026-04-21 11:06:01 +02:00
parent f62e7499ec
commit 84b87d61f2
91 changed files with 551 additions and 637 deletions
+1 -4
View File
@@ -51,10 +51,7 @@ func GetIsoWeekCount(year int) int {
w2 -= 1
w3 -= 1
w := w1
if w2 > w {
w = w2
}
w := max(w2, w1)
if w3 > w {
w = w3
}