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

@@ -489,7 +489,7 @@ module Redmine
API_FORMATS.each do |format|
format_request = request.sub /$/, ".#{format}"
super options.merge(format_request => arg[request], :format => format)
super(options.merge(format_request => arg[request], :format => format))
end
end
end