Skip to content

Commit

Permalink
Fix linting and tests (#813)
Browse files Browse the repository at this point in the history
## Changes
<!-- Summary of your changes that are easy to understand -->

## Tests
<!-- How is this tested? -->
  • Loading branch information
kartikgupta-db authored Jul 14, 2023
1 parent 96adb86 commit db55c27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/databricks-vscode/src/utils/envVarGenerators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export function getProxyEnvVars() {
}

export function removeUndefinedKeys<
T extends Record<string, string | undefined>
T extends Record<string, string | undefined>,
>(envVarMap?: T): T | undefined {
if (envVarMap === undefined) {
return;
Expand Down

0 comments on commit db55c27

Please sign in to comment.