mirror of https://github.com/ArduPilot/ardupilot
Tools: AP_Periph: Web: scripts: fix luacheck issue
This commit is contained in:
parent
5e5aa13446
commit
f13d4f12b6
|
@ -442,13 +442,13 @@ end
|
||||||
--[[
|
--[[
|
||||||
client class for open connections
|
client class for open connections
|
||||||
--]]
|
--]]
|
||||||
local function Client(_sock, _idx)
|
local function Client(sock_in, idx_in)
|
||||||
local self = {}
|
local self = {}
|
||||||
|
|
||||||
self.closed = false
|
self.closed = false
|
||||||
|
|
||||||
local sock = _sock
|
local sock = sock_in
|
||||||
local idx = _idx
|
local idx = idx_in
|
||||||
local have_header = false
|
local have_header = false
|
||||||
local header = ""
|
local header = ""
|
||||||
local header_lines = {}
|
local header_lines = {}
|
||||||
|
|
Loading…
Reference in New Issue