Skip to content

Commit 23bd562

Browse files
committed
self.follow_untyped_imports = True
1 parent 16e99de commit 23bd562

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypy/options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def __init__(self) -> None:
120120
# Is ignore_missing_imports set in a per-module section
121121
self.ignore_missing_imports_per_module = False
122122
# Typecheck modules without stubs or py.typed marker
123-
self.follow_untyped_imports = False
123+
self.follow_untyped_imports = True
124124
self.follow_imports = "normal" # normal|silent|skip|error
125125
# Whether to respect the follow_imports setting even for stub files.
126126
# Intended to be used for disabling specific stubs.

0 commit comments

Comments
 (0)