Remove unnecessary parens

This commit is contained in:
Jose Farias
2024-10-22 10:49:08 -06:00
parent 6a9ffe3103
commit 79670c04c3
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -38,6 +38,6 @@ class WorkflowsController < ApplicationController
end
def workflow_params
params.expect(workflow: [ :name ])
params.expect workflow: [ :name ]
end
end