Skip to content

Commit 189e1e2

Browse files
Fix linter
1 parent a9ede30 commit 189e1e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/langchainrb_rails/generators/langchainrb_rails/templates/assistant/controllers/assistants_controller.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def edit
3232

3333
def update
3434
if @assistant.update(assistant_params)
35-
redirect_to @assistant, notice: 'Assistant was successfully updated.'
35+
redirect_to @assistant, notice: "Assistant was successfully updated."
3636
else
3737
render :edit
3838
end
@@ -55,7 +55,7 @@ def chat
5555

5656
def destroy
5757
@assistant.destroy
58-
redirect_to assistants_path, notice: 'Assistant was successfully deleted.'
58+
redirect_to assistants_path, notice: "Assistant was successfully deleted."
5959
end
6060

6161
private

0 commit comments

Comments
 (0)