diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2020-05-12 08:50:02 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2020-05-12 08:50:02 +0200 |
commit | 60290ea135bb2b53ab87ad6d60f042d20a72db0b (patch) | |
tree | ce69d43ff9aa99819146f7c840ff3562222ceba7 /astroid/builder.py | |
parent | e53bfcb602114179bc3b0d4e1db7a5d155152d25 (diff) | |
download | astroid-git-60290ea135bb2b53ab87ad6d60f042d20a72db0b.tar.gz |
Fix the new violations of super-without-arguments
Diffstat (limited to 'astroid/builder.py')
-rw-r--r-- | astroid/builder.py | 2 |
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 |