summaryrefslogtreecommitdiff
path: root/astroid/rebuilder.py
diff options
context:
space:
mode:
authorNick Drozd <nicholasdrozd@gmail.com>2018-06-28 16:46:38 -0500
committerClaudiu Popa <pcmanticore@gmail.com>2018-06-28 14:46:38 -0700
commitc5314076a38443d5be1b13567838920bfeaf27cd (patch)
tree294f7812514a42a37312aaba6fe6e38a11936b4f /astroid/rebuilder.py
parentd94f8903a0beaa77d5e735c5d7c19b5e725bbea9 (diff)
downloadastroid-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.py2
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):