From d667f19c57a9049cbfb6ef676d899335f10e8420 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Tue, 28 Oct 2014 02:11:50 +0100 Subject: [PATCH] Remove the old is_generated. --- jedi/parser/representation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jedi/parser/representation.py b/jedi/parser/representation.py index ea66645f..ec19d659 100644 --- a/jedi/parser/representation.py +++ b/jedi/parser/representation.py @@ -1239,7 +1239,7 @@ class Param(Base): A helper class for functions. Read only. """ - __slots__ = ('tfpdef', 'default', 'stars', 'parent', 'is_generated', 'annotation_stmt') + __slots__ = ('tfpdef', 'default', 'stars', 'parent', 'annotation_stmt') def __init__(self, tfpdef, parent, default=None, stars=0): self.tfpdef = tfpdef # tfpdef: see grammar.txt