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
Regarding N806 (variable in function should be lowercase)
In Django I have a class that I create alias for which should be uppercase because it's still a class:
if a=1:
AliasMyClass = MyClass1
if a=2:
AliasMyClass = MyClass2
AliasMyClass.objects.create......
So it's clearly a false positive to me. Can you fix it?