Rubocop auto correct

This commit is contained in:
kojix2 2023-01-05 11:48:19 +09:00
parent 83b1da9b96
commit f9ffca636f

View File

@ -50,12 +50,12 @@ module YouPlot
def find_config_file
config_file_candidate_paths.each do |file|
path = File.expand_path(file)
if File.exist?(path)
next unless File.exist?(path)
@config_file = path
ENV['MYYOUPLOTRC'] = path
return @config_file
end
end
nil
end