diff options
Diffstat (limited to 'astroid/nodes.py')
-rw-r--r-- | astroid/nodes.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/astroid/nodes.py b/astroid/nodes.py index bf6911ac..4ce4ebe2 100644 --- a/astroid/nodes.py +++ b/astroid/nodes.py @@ -1,6 +1,6 @@ # Copyright (c) 2006-2011, 2013 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr> # Copyright (c) 2010 Daniel Harding <dharding@gmail.com> -# Copyright (c) 2014-2018 Claudiu Popa <pcmanticore@gmail.com> +# Copyright (c) 2014-2020 Claudiu Popa <pcmanticore@gmail.com> # Copyright (c) 2014 Google, Inc. # Copyright (c) 2015-2016 Ceridwen <ceridwenv@gmail.com> # Copyright (c) 2016 Jared Garst <jgarst@users.noreply.github.com> @@ -86,6 +86,7 @@ from astroid.node_classes import ( # Node not present in the builtin ast module. DictUnpack, Unknown, + EvaluatedObject, ) from astroid.scoped_nodes import ( Module, |