Skip to content

Commit 91bc911

Browse files
committed
Fix typing error
1 parent 8bb31e6 commit 91bc911

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/stubs/github/internal/utils.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ export function getProxyAgentDispatcher(
5050
): ProxyAgent | undefined {
5151
const hc = new httpClient.HttpClient()
5252

53-
return hc.getAgentDispatcher(destinationUrl)
53+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
54+
return hc.getAgentDispatcher(destinationUrl) as any
5455
}
5556

5657
/**

0 commit comments

Comments
 (0)