summaryrefslogtreecommitdiff
path: root/astroid/transforms.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/transforms.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/transforms.py')
-rw-r--r--astroid/transforms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/transforms.py b/astroid/transforms.py
index 42045dc4..90fe7fb7 100644
--- a/astroid/transforms.py
+++ b/astroid/transforms.py
@@ -7,7 +7,7 @@
import collections
-class TransformVisitor(object):
+class TransformVisitor:
"""A visitor for handling transforms.
The standard approach of using it is to call