Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AbstractBaseUser.REQUIRED_FIELDS is a ClassVar
On a subclass, there's not correct way to annotate `REQUIRED_FIELDS`. - Annotating as `list[str]` warns that this should be annotated as `ClassVar`. - Annotating as `ClassVar` warns that the this doesn't match the parent class. This field is a class variable anyway, so this is the correct annotation.
- Loading branch information