We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4e79ea commit 5f8fd6aCopy full SHA for 5f8fd6a
mypy/dmypy_server.py
@@ -756,7 +756,8 @@ def find_reachable_changed_modules(
756
changed.append((nxt.module, nxt.path))
757
elif nxt.module in graph:
758
state = graph[nxt.module]
759
- for dep in state.dependencies:
+ ancestors = state.ancestors or []
760
+ for dep in state.dependencies + ancestors:
761
if dep not in seen:
762
seen.add(dep)
763
worklist.append(BuildSource(graph[dep].path, graph[dep].id, followed=True))
0 commit comments