Remove parallel assignment

This commit is contained in:
Jacob Vosmaer 2016-05-03 11:46:14 +02:00
parent 9ce0994299
commit 3dc276b367
1 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,8 @@ module Gitlab
def find(login, password, project:, ip:)
raise "Must provide an IP for rate limiting" if ip.nil?
user, type = nil, nil
user = nil
type = nil
if valid_ci_request?(login, password, project)
type = :ci