Fix RuboCop offense Style/SuperWithArgsParentheses (#39887).

git-svn-id: https://svn.redmine.org/redmine/trunk@22530 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA
2023-12-20 07:15:11 +00:00
parent b552720590
commit c51e4937e7
13 changed files with 16 additions and 16 deletions

View File

@@ -475,7 +475,7 @@ class Issue < ActiveRecord::Base
send "#{attr}=", attrs.delete(attr)
end
end
super attrs, *args
super(attrs, *args)
end
def attributes=(new_attributes)