We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a703517 commit c1ed1faCopy full SHA for c1ed1fa
2 files changed
.pre-commit-config.yaml
@@ -13,6 +13,7 @@ repos:
13
hooks:
14
- id: pyupgrade
15
args: [--py3-plus, --keep-percent-format]
16
+ exclude: "tests/test_slots.py"
17
18
- repo: https://github.com/PyCQA/isort
19
rev: 5.10.1
tests/test_slots.py
@@ -627,7 +627,7 @@ class C:
627
field = attr.ib()
628
629
def f(self, a):
630
- super().__init__()
+ super(C, self).__init__()
631
632
C(field=1)
633
0 commit comments