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