Skip to content

Commit

Permalink
style: update
Browse files Browse the repository at this point in the history
  • Loading branch information
zkochan committed Jan 18, 2024
1 parent 48185aa commit 06bf859
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion network/agent/agent.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jest.mock('agentkeepalive', () => {
})
jest.mock('https-proxy-agent', () => mockHttpAgent('https-proxy'))

function mockHttpAgent(type: string) {
function mockHttpAgent (type: string) {
return function Agent(opts: any) {
// eslint-disable-line @typescript-eslint/no-explicit-any
return {
Expand Down
2 changes: 1 addition & 1 deletion network/proxy-agent/proxy-agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ function getProxy (
return undefined
}

function getAuth (user: { username?: string; password?: string }) {
function getAuth (user: { username?: string, password?: string }) {
if (!user.username) {
return undefined
}
Expand Down

0 comments on commit 06bf859

Please sign in to comment.