Skip to content

Commit

Permalink
chore: remove type annotations from model fields
Browse files Browse the repository at this point in the history
  • Loading branch information
danjac committed Sep 14, 2024
1 parent 039217b commit 1d90a0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radiofeed/users/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ def create_superuser(
class User(AbstractUser):
"""Custom User model."""

send_email_notifications: bool = models.BooleanField(default=True)
send_email_notifications = models.BooleanField(default=True)

objects: models.Manager[User] = UserManager()

0 comments on commit 1d90a0f

Please sign in to comment.