From d6f6c29a636f631214719494005ed0204846b518 Mon Sep 17 00:00:00 2001 From: Sam Roeca Date: Thu, 13 Feb 2020 10:43:41 -0500 Subject: [PATCH] TypedDict test: fix Bar inheritance checks Note: foo is defined as a function a the module level so I remove it from consideration here to avoid complicating this test with other tests in the module. --- test/completion/pep0484_typing.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/completion/pep0484_typing.py b/test/completion/pep0484_typing.py index 6472880d..73ab32ee 100644 --- a/test/completion/pep0484_typing.py +++ b/test/completion/pep0484_typing.py @@ -569,9 +569,7 @@ class Bar(Foo): #? int() another_variable - #? str() - foo - #? int() + #? an_int def typed_dict_test_foo(arg: Bar):