test for none proxy env
This commit is contained in:
parent
a72b37bc34
commit
f739418141
@ -81,8 +81,10 @@ for key in providers:
|
||||
country = None
|
||||
pos = len(country_groups) - 1
|
||||
if pos >= 0:
|
||||
country = country_groups[pos].strip("_")
|
||||
current_keys.add(f'{key}_{country}')
|
||||
country_temp = country_groups[pos]
|
||||
if isinstance(country_temp, str):
|
||||
country = country_temp.strip("_")
|
||||
current_keys.add(f'{key}_{country}')
|
||||
proxy = os.environ.get(match)
|
||||
if proxy is not None:
|
||||
current.append(proxy)
|
||||
|
Loading…
Reference in New Issue
Block a user