Description
ruff 0.1.15
N815 will report on mixedCase class variables on subclasses of a TypedDict, while it won't on the actual TypedDict (as expected)
Minimal reproducible example
from typing import TypedDict
class A(TypedDict):
mixedCase: int # no error!
class B(A):
alsoMixedCase: int # Variable `alsoMixedCase` in class scope should not be mixedCase