ci: fix type error
This commit is contained in:
parent
3b249b7195
commit
09a4e4f460
1 changed files with 1 additions and 1 deletions
|
|
@ -95,7 +95,7 @@ M.parse_line = function(adapter, line, column_defs)
|
||||||
local name = util.split_config(def)
|
local name = util.split_config(def)
|
||||||
local range = { start }
|
local range = { start }
|
||||||
local start_len = string.len(rem)
|
local start_len = string.len(rem)
|
||||||
value, rem = columns.parse_col(adapter, rem, def)
|
value, rem = columns.parse_col(adapter, assert(rem), def)
|
||||||
if not rem then
|
if not rem then
|
||||||
return nil, string.format("Parsing %s failed", name)
|
return nil, string.format("Parsing %s failed", name)
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue