Skip to content

Commit 09a4e4f

Browse files
committed
ci: fix type error
1 parent 3b249b7 commit 09a4e4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/oil/mutator/parser.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ M.parse_line = function(adapter, line, column_defs)
9595
local name = util.split_config(def)
9696
local range = { start }
9797
local start_len = string.len(rem)
98-
value, rem = columns.parse_col(adapter, rem, def)
98+
value, rem = columns.parse_col(adapter, assert(rem), def)
9999
if not rem then
100100
return nil, string.format("Parsing %s failed", name)
101101
end

0 commit comments

Comments
 (0)