8000 Fixed style issue. · codemuse-app/scip-python@ba204e3 · GitHub
[go: up one dir, main page]

Skip to content

Commit ba204e3

Browse files
committed
Fixed style issue.
1 parent a37e259 commit ba204e3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/pyright-internal/src/analyzer/typeEvaluator.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7175,7 +7175,11 @@ export function createTypeEvaluator(importLookup: ImportLookup, evaluatorOptions
71757175
// Expand constrained type variables.
71767176
if (isTypeVar(setType) && setType.details.constraints.length > 0) {
71777177
const conditionFilter = isClassInstance(baseType) ? baseType.condition : undefined;
7178-
setType = makeTopLevelTypeVarsConcrete(setType, /* makeParamSpecsConcrete */ undefined, conditionFilter);
7178+
setType = makeTopLevelTypeVarsConcrete(
7179+
setType,
7180+
/* makeParamSpecsConcrete */ undefined,
7181+
conditionFilter
7182+
);
71797183
}
71807184

71817185
argList.push({

0 commit comments

Comments
 (0)
0