Skip to content

Commit 68740cc

Browse files
committed
fix lint (try)
1 parent cee01a5 commit 68740cc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lua/copilot/model.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ end
6666
--- Interactive model selection using vim.ui.select
6767
---@param opts? { force?: boolean, args?: string }
6868
function M.select(opts)
69-
opts = opts or {}
69+
_ = opts or {}
7070

7171
local client = c.get()
7272
if not client then
@@ -140,7 +140,7 @@ end
140140
--- List available completion models
141141
---@param opts? { force?: boolean, args?: string }
142142
function M.list(opts)
143-
opts = opts or {}
143+
_ = opts or {}
144144

145145
local client = c.get()
146146
if not client then
@@ -184,7 +184,7 @@ end
184184
--- Show the current model
185185
---@param opts? { force?: boolean, args?: string }
186186
function M.get(opts)
187-
opts = opts or {}
187+
_ = opts or {}
188188

189189
local current = M.get_current_model()
190190
if current == "" then

0 commit comments

Comments
 (0)