diff options
author | Nick Drozd <nicholasdrozd@gmail.com> | 2018-06-28 16:46:38 -0500 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2018-06-28 14:46:38 -0700 |
commit | c5314076a38443d5be1b13567838920bfeaf27cd (patch) | |
tree | 294f7812514a42a37312aaba6fe6e38a11936b4f /astroid/rebuilder.py | |
parent | d94f8903a0beaa77d5e735c5d7c19b5e725bbea9 (diff) | |
download | astroid-git-c5314076a38443d5be1b13567838920bfeaf27cd.tar.gz |
Fix useless-object-inheritance lint error (#573)
See https://github.com/PyCQA/pylint/pull/2209
Diffstat (limited to 'astroid/rebuilder.py')
-rw-r--r-- | astroid/rebuilder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/rebuilder.py b/astroid/rebuilder.py index 6f857441..99e00fe0 100644 --- a/astroid/rebuilder.py +++ b/astroid/rebuilder.py @@ -107,7 +107,7 @@ def _visit_or_none(node, attr, visitor, parent, visit='visit', return None -class TreeRebuilder(object): +class TreeRebuilder: """Rebuilds the _ast tree to become an Astroid tree""" def __init__(self, manager, parse_python_two: bool = False): |