From 331690a0017c93285b8333f33ddcd1afbc104a83 Mon Sep 17 00:00:00 2001 From: Ashley Whetter Date: Mon, 11 Jan 2021 21:41:16 -0800 Subject: [PATCH] Fixed Any and Dict missing from stubgen imports list --- mypy/stubgenc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mypy/stubgenc.py b/mypy/stubgenc.py index 905be239fc13..e1ba62308bdc 100755 --- a/mypy/stubgenc.py +++ b/mypy/stubgenc.py @@ -20,7 +20,7 @@ # Members of the typing module to consider for importing by default. _DEFAULT_TYPING_IMPORTS = ( - 'Any' + 'Any', 'Dict', 'Iterable', 'Iterator',