From e52becbc406800a921c41f43e68ef24ee5f89429 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Tue, 15 Jul 2025 14:21:53 +0530 Subject: [PATCH] style: autofix rubocop --- enterprise/app/models/concerns/captain_tools_helpers.rb | 2 +- .../api/v1/accounts/captain/assistants/tools.json.jbuilder | 2 +- spec/enterprise/models/concerns/captain_tools_helpers_spec.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/enterprise/app/models/concerns/captain_tools_helpers.rb b/enterprise/app/models/concerns/captain_tools_helpers.rb index e7bef04ca..7aa924d3d 100644 --- a/enterprise/app/models/concerns/captain_tools_helpers.rb +++ b/enterprise/app/models/concerns/captain_tools_helpers.rb @@ -73,4 +73,4 @@ module CaptainToolsHelpers tool_matches = text.scan(TOOL_REFERENCE_REGEX) tool_matches.flatten.uniq end -end \ No newline at end of file +end diff --git a/enterprise/app/views/api/v1/accounts/captain/assistants/tools.json.jbuilder b/enterprise/app/views/api/v1/accounts/captain/assistants/tools.json.jbuilder index 3af1b179c..3a993caeb 100644 --- a/enterprise/app/views/api/v1/accounts/captain/assistants/tools.json.jbuilder +++ b/enterprise/app/views/api/v1/accounts/captain/assistants/tools.json.jbuilder @@ -3,4 +3,4 @@ json.array! @tools do |tool| json.title tool[:title] json.description tool[:description] json.icon tool[:icon] -end \ No newline at end of file +end diff --git a/spec/enterprise/models/concerns/captain_tools_helpers_spec.rb b/spec/enterprise/models/concerns/captain_tools_helpers_spec.rb index 9b31a6111..1c441bc61 100644 --- a/spec/enterprise/models/concerns/captain_tools_helpers_spec.rb +++ b/spec/enterprise/models/concerns/captain_tools_helpers_spec.rb @@ -173,4 +173,4 @@ RSpec.describe CaptainToolsHelpers, type: :concern do expect(result).to eq(%w[add_contact_note update_priority add_private_note]) end end -end \ No newline at end of file +end