From 09c815ba11f4d24593b241b06afdab9561ee18ae Mon Sep 17 00:00:00 2001 From: thsrite <806089486@qq.com> Date: Sat, 15 Jul 2023 00:15:32 +0800 Subject: [PATCH] fix --- app/core/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/core/config.py b/app/core/config.py index a1c0aede..0f9b0fce 100644 --- a/app/core/config.py +++ b/app/core/config.py @@ -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