You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #4066 a routine was implemented to ignore TypedDicts from N815 (mixed-case-variable-in-class-scope). But subclasses are not respected from the ignore rule for TypedDicts.
fromtypingimportTypedDictclassBaseclass(TypedDict):
camelCaseOK: str# No violationclassSubclass(Baseclass):
camelCaseNotOK: str# Violation! But should not violate because it is a subclass of Baseclass
The text was updated successfully, but these errors were encountered:
In #4066 a routine was implemented to ignore TypedDicts from N815 (mixed-case-variable-in-class-scope). But subclasses are not respected from the ignore rule for TypedDicts.
The text was updated successfully, but these errors were encountered: