Skip to content

Commit efa0b52

Browse files
committed
Update TypeQuery visitor
1 parent eda98bf commit efa0b52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mypy/type_visitor.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -353,10 +353,10 @@ def visit_type_var(self, t: TypeVarType) -> T:
353353
return self.query_types([t.upper_bound, t.default] + t.values)
354354

355355
def visit_param_spec(self, t: ParamSpecType) -> T:
356-
return self.strategy([])
356+
return self.query_types([t.default])
357357

358358
def visit_type_var_tuple(self, t: TypeVarTupleType) -> T:
359-
return self.strategy([])
359+
return self.query_types([t.default])
360360

361361
def visit_unpack_type(self, t: UnpackType) -> T:
362362
return self.query_types([t.type])

0 commit comments

Comments
 (0)