### Summary While looking at https://github.com/astral-sh/ruff/pull/18688, I realized that `UP008` outright ignores `builtins.super`. I'm pretty sure it shouldn't, should it? ```python import builtins class C: def f(self): builtins.super(C, self).f() # doesn't get linted ```