Skip to content

Commit

Permalink
chore: apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] committed Oct 4, 2023
1 parent 8372e55 commit ae68871
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/_utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ export async function sendFetch(
process.env.HTTP_PROXY ||
process.env.http_proxy;
if (proxyEnv) {
const HttpsProxyAgent = await import("https-proxy-agent").then(r => r.HttpsProxyAgent || r.default);
const HttpsProxyAgent = await import("https-proxy-agent").then(
(r) => r.HttpsProxyAgent || r.default,
);
options.agent = new HttpsProxyAgent(proxyEnv);
}
}
Expand Down

0 comments on commit ae68871

Please sign in to comment.