From b3edda30c4277ee932cd7cd6b458dc7b9e143367 Mon Sep 17 00:00:00 2001 From: Peter Law Date: Sun, 26 Jul 2020 12:09:04 +0100 Subject: [PATCH] Explain why we 'type: ignore' these properties --- jedi/inference/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/jedi/inference/__init__.py b/jedi/inference/__init__.py index fc2bf0c3..5d5e4357 100644 --- a/jedi/inference/__init__.py +++ b/jedi/inference/__init__.py @@ -120,6 +120,7 @@ class InferenceState(object): debug.dbg('execute result: %s in %s', value_set, value) return value_set + # mypy doesn't suppport decorated propeties (https://github.com/python/mypy/issues/1362) @property # type: ignore[misc] @inference_state_function_cache() def builtins_module(self):