Modernize for loop

This commit is contained in:
2026-02-06 16:36:30 +01:00
parent 430e29d51b
commit 4440cb832f

View File

@@ -141,7 +141,7 @@ func DownloadSheet(c *gin.Context) {
}
func GenerateNonexistentSheetUuid() (*uuid.UUID, error) {
for i := 0; i < 10; i++ {
for range 10 {
uuid := uuid.New()
var exists bool