From 045b8a35a254a3e183f5672e1e8470b21e0a8fe0 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Sun, 26 Jan 2020 19:39:15 +0100 Subject: [PATCH] Remove dead code --- jedi/inference/arguments.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/jedi/inference/arguments.py b/jedi/inference/arguments.py index c9404478..c68dd469 100644 --- a/jedi/inference/arguments.py +++ b/jedi/inference/arguments.py @@ -131,15 +131,6 @@ def _parse_argument_clinic(string): class _AbstractArgumentsMixin(object): - def infer_all(self, funcdef=None): - """ - Inferes all arguments as a support for static analysis - (normally Jedi). - """ - for key, lazy_value in self.unpack(): - types = lazy_value.infer() - try_iter_content(types) - def unpack(self, funcdef=None): raise NotImplementedError