Skip to content

Commit 369a100

Browse files
committed
Lost fixup line
1 parent 7b78230 commit 369a100

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

mypy/fixup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,8 @@ def visit_callable_type(self, ct: CallableType) -> None:
283283
ct.ret_type.accept(self)
284284
for v in ct.variables:
285285
v.accept(self)
286+
if ct.original_self_type is not None:
287+
ct.original_self_type.accept(self)
286288
if ct.type_guard is not None:
287289
ct.type_guard.accept(self)
288290
if ct.type_is is not None:

0 commit comments

Comments
 (0)