Skip to content

Commit

Permalink
Fixed style issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
msfterictraut committed Sep 5, 2023
1 parent c4f5cb8 commit ffb6eb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/pyright-internal/src/analyzer/typeEvaluator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8738,11 +8738,11 @@ export function createTypeEvaluator(importLookup: ImportLookup, evaluatorOptions
const diagAddendum = new DiagnosticAddendum();
const argTypes = argList.map((t) => {
const typeString = printType(getTypeOfArgument(t).type);

if (t.argumentCategory === ArgumentCategory.UnpackedList) {
return `*${typeString}`;
}

if (t.argumentCategory === ArgumentCategory.UnpackedDictionary) {
return `**${typeString}`;
}
Expand Down

0 comments on commit ffb6eb8

Please sign in to comment.