summaryrefslogtreecommitdiff
path: root/astroid/builder.py
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2020-05-12 08:50:02 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2020-05-12 08:50:02 +0200
commit60290ea135bb2b53ab87ad6d60f042d20a72db0b (patch)
treece69d43ff9aa99819146f7c840ff3562222ceba7 /astroid/builder.py
parente53bfcb602114179bc3b0d4e1db7a5d155152d25 (diff)
downloadastroid-git-60290ea135bb2b53ab87ad6d60f042d20a72db0b.tar.gz
Fix the new violations of super-without-arguments
Diffstat (limited to 'astroid/builder.py')
-rw-r--r--astroid/builder.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/builder.py b/astroid/builder.py
index 9e808f1b..142764b1 100644
--- a/astroid/builder.py
+++ b/astroid/builder.py
@@ -77,7 +77,7 @@ class AstroidBuilder(raw_building.InspectBuilder):
# pylint: disable=redefined-outer-name
def __init__(self, manager=None, apply_transforms=True):
- super(AstroidBuilder, self).__init__()
+ super().__init__()
self._manager = manager or MANAGER
self._apply_transforms = apply_transforms