diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2015-09-25 00:42:49 +0300 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2015-09-25 00:42:49 +0300 |
commit | 489ad7eb63fd91c9254ea88e3991e2ed596b2456 (patch) | |
tree | 1c03247515bdc7db634d30ce3d3541e03a297a34 /astroid/context.py | |
parent | 97e87624bc6f90130ec03d8cceef17fa9159b629 (diff) | |
download | astroid-git-489ad7eb63fd91c9254ea88e3991e2ed596b2456.tar.gz |
Make pylint happyy.
Diffstat (limited to 'astroid/context.py')
-rw-r--r-- | astroid/context.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/context.py b/astroid/context.py index 051fab81..ecaa1ba0 100644 --- a/astroid/context.py +++ b/astroid/context.py @@ -66,7 +66,7 @@ class InferenceContext(object): width=80 - len(field))) for field in self.__slots__) return '%s(%s)' % (type(self).__name__, ',\n '.join(state)) - + def __repr__(self): state = ('%s=%s' % (field, repr(getattr(self, field))) for field in self.__slots__) |