Fix Rubocop offenses

This commit is contained in:
Sebastian Serth
2023-07-27 09:32:45 +02:00
parent 66c3cb2635
commit 5faf5be033
3 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,7 @@
# frozen_string_literal: true
class ServiceBase
def self.call(**args)
new(**args).execute
def self.call(**)
new(**).execute
end
end