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

@@ -40,7 +40,7 @@ class TimeEntryQuery < Query
]
def initialize(attributes=nil, *args)
super attributes
super(attributes)
self.filters ||= {'spent_on' => {:operator => "*", :values => []}}
end