From 05d07c23abf2646d0e9f1abdd136efebe06e27a3 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Sun, 26 Aug 2018 13:23:49 +0200 Subject: [PATCH] abstractmethod should just pass params --- jedi/plugins/stdlib.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/jedi/plugins/stdlib.py b/jedi/plugins/stdlib.py index 1ba143e9..7735fcfd 100644 --- a/jedi/plugins/stdlib.py +++ b/jedi/plugins/stdlib.py @@ -331,4 +331,9 @@ _implemented = { 'collections': { 'namedtuple': collections_namedtuple, }, + 'abc': { + # Not sure if this is necessary, but it's used a lot in typeshed and + # it's for now easier to just pass the function. + 'abstractmethod': _return_first_param, + } }