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