From d3e3c458a0d6b30b2977d00938c79643f18adf93 Mon Sep 17 00:00:00 2001 From: Jeferson Ramos Date: Wed, 19 Nov 2025 14:09:07 -0300 Subject: [PATCH] lint --- src/utils/makeProxyAgent.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/makeProxyAgent.ts b/src/utils/makeProxyAgent.ts index 4f555c19..c2848292 100644 --- a/src/utils/makeProxyAgent.ts +++ b/src/utils/makeProxyAgent.ts @@ -1,6 +1,6 @@ -import { ProxyAgent } from 'undici'; import { HttpsProxyAgent } from 'https-proxy-agent'; import { SocksProxyAgent } from 'socks-proxy-agent'; +import { ProxyAgent } from 'undici'; type Proxy = { host: string; @@ -81,4 +81,4 @@ export function makeProxyAgentUndici(proxy: Proxy | string): ProxyAgent | SocksP default: throw new Error(`Unsupported proxy protocol: ${protocol}`); } -} \ No newline at end of file +}