Align argument type to keyword argument for private process method in FetchResourceService (#25189)

lolsob-rspec
S.H 2023-05-30 16:28:01 +09:00 committed by GitHub
parent ad3f504a21
commit f145662c05
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class FetchResourceService < BaseService
private
def process(url, terminal = false)
def process(url, terminal: false)
@url = url
perform_request { |response| process_response(response, terminal) }