linter fixes
PR Prerequisites / Lua Check (pull_request) Failing after 20s
PR Prerequisites / Bundles Without Errors (pull_request) Failing after 28s

This commit is contained in:
2026-09-09 11:12:58 +02:00
parent ba240db310
commit 0346f8a7a8
40 changed files with 367 additions and 536 deletions
+1 -1
View File
@@ -149,7 +149,7 @@ do -- INIT UTIL
---@param findableTable table
---@return boolean
UTIL.startswithAny = function(str, findableTable)
for key, value in pairs(findableTable) do
for _, value in pairs(findableTable) do
if type(value) == "string" and UTIL.startswith(str, value) then return true end
end
return false