Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
cryvate committed Aug 26, 2019
1 parent 37fb3cf commit 84f62ad
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/pip/_internal/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,10 @@ def __init__(self, *args, **kwargs):
elif _KERBEROS_AVAILABLE and not prompting:
auths = [no_prompt, HTTPKerberosAuth(ik.REQUIRED)]
else:
auths = [MultiDomainBasicAuth(prompting=prompting, index_urls=index_urls)]
auths = [MultiDomainBasicAuth(
prompting=prompting,
index_urls=index_urls
)]

self.auth = MultiAuth(*auths)

Expand Down

0 comments on commit 84f62ad

Please sign in to comment.