This commit is contained in:
thsrite 2023-07-15 00:15:32 +08:00
parent 824efecf77
commit 09c815ba11

View File

@ -183,8 +183,8 @@ class Settings(BaseSettings):
def PROXY(self):
if self.PROXY_HOST:
return {
"http": {self.PROXY_HOST},
"https": {self.PROXY_HOST},
"http": self.PROXY_HOST,
"https": self.PROXY_HOST,
}
return None