Tools: AP_Periph: Web: scripts: fix luacheck issue

This commit is contained in:
Iampete1 2024-12-21 22:55:59 +00:00
parent 5e5aa13446
commit f13d4f12b6
1 changed files with 3 additions and 3 deletions

View File

@ -442,13 +442,13 @@ end
--[[
client class for open connections
--]]
local function Client(_sock, _idx)
local function Client(sock_in, idx_in)
local self = {}
self.closed = false
local sock = _sock
local idx = _idx
local sock = sock_in
local idx = idx_in
local have_header = false
local header = ""
local header_lines = {}