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
|
||||
--]]
|
||||
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 = {}
|
||||
|
|
Loading…
Reference in New Issue