Commits
Click on a commit to change the comparison range[`pyupgrade`] properly trigger UP008 in nested class3 days ago
by leandrobbraga [`pyupgrade`] remove argument from super3 hours ago
by leandrobbraga [`pyupgrade`] remove unecessary Expr::Attribute match
Remove the `Expr::Attribute` matching for the second parameter in
`super`. The UP008 does not care when it's an Attribute, the only cases
are:
- super(MyClass, self)
- super(OuterClass.InnerClass, self)
Which is always an `Expr::Name`2 hours ago
by leandrobbraga