From 62bb06793d41fe9df6e291b177f3502d22cd7ece Mon Sep 17 00:00:00 2001 From: Ruslan Date: Wed, 11 Feb 2026 09:45:42 +0200 Subject: [PATCH] refactor: quotes --- lua/crentist/lazy/parrot.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lua/crentist/lazy/parrot.lua b/lua/crentist/lazy/parrot.lua index c6824da..dfeb3a4 100644 --- a/lua/crentist/lazy/parrot.lua +++ b/lua/crentist/lazy/parrot.lua @@ -8,12 +8,12 @@ return { name = 'anthropic', endpoint = 'https://api.anthropic.com/v1/messages', model_endpoint = 'https://api.anthropic.com/v1/models', - api_key = { '/usr/local/bin/sops', "--config", "/dev/null", "-d", vim.fn.expand("$HOME") .. "/.claude-api" }, + api_key = { '/usr/local/bin/sops', '--config', '/dev/null', '-d', vim.fn.expand('$HOME') .. '/.claude-api' }, headers = function(self) return { - ['Content-Type'] = "application/json", + ['Content-Type'] = 'application/json', ['x-api-key'] = self.api_key, - ['anthropic-version'] = "2023-06-01", + ['anthropic-version'] = '2023-06-01', } end, params = { @@ -39,7 +39,7 @@ return { end, } }, - user_input_ui = "buffer", + user_input_ui = 'buffer', } }